/*!****************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js!./node_modules/@fancyapps/ui/dist/fancybox/fancybox.css ***!
  \****************************************************************************************************************************************************************************/
: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-shadow: none;
  --f-button-transition: all .15s ease;
  --f-button-transform: none;
  --f-button-outline-width: 1px;
  --f-button-outline-color: rgba(0, 0, 0, .7);
  --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-opacity: 1;
  --f-button-svg-disabled-opacity: .5;
  --f-button-svg-transition: opacity .15s ease;
  --f-button-svg-transform: none;
}

.f-button {
  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);
  box-shadow: var(--f-button-shadow);
  transform: var(--f-button-transform);
  transition: var(--f-button-transition);
  backdrop-filter: var(--f-button-backdrop-filter);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  pointer-events: all;
  cursor: pointer;
  overflow: hidden;
}

@media (hover: hover) {
  .f-button:hover:not([aria-disabled]) {
    color: var(--f-button-hover-color, var(--f-button-color));
    background-color: var(--f-button-hover-bg, var(--f-button-bg));
  }
}
.f-button:active:not([aria-disabled]) {
  color: var(--f-button-active-color, var(--f-button-hover-color, var(--f-button-color)));
  background-color: var(--f-button-active-bg, var(--f-button-hover-bg, var(--f-button-bg)));
}

.f-button:focus {
  outline: none;
}

.f-button:focus-visible {
  outline: var(--f-button-outline-width) solid var(--f-button-outline-color);
  outline-offset: var(--f-button-outline-offset);
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  transform: var(--f-button-svg-transform);
  fill: var(--f-button-svg-fill);
  filter: var(--f-button-svg-filter);
  opacity: var(--f-button-svg-opacity, 1);
  transition: var(--f-button-svg-transition);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

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

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

[data-panzoom-action=toggleFS] g:first-child {
  display: flex;
}

[data-panzoom-action=toggleFS] g:last-child {
  display: none;
}

.in-fullscreen [data-panzoom-action=toggleFS] g:first-child {
  display: none;
}

.in-fullscreen [data-panzoom-action=toggleFS] g:last-child {
  display: flex;
}

[data-autoplay-action=toggle] svg g:first-child {
  display: flex;
}

[data-autoplay-action=toggle] svg g:last-child {
  display: none;
}

.has-autoplay [data-autoplay-action=toggle] svg g:first-child {
  display: none;
}

.has-autoplay [data-autoplay-action=toggle] svg g:last-child {
  display: flex;
}

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

:fullscreen [data-fullscreen-action=toggle] svg [data-fullscreen-action=toggle] svg g:last-child {
  display: flex;
}

:root {
  --f-spinner-color-1: rgba(0, 0, 0, .1);
  --f-spinner-color-2: rgba(17, 24, 28, .8);
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-border-radius: 50%;
  --f-spinner-border-width: 4px;
}

.f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
  translate: -50% -50%;
  border: var(--f-spinner-border-width) solid var(--f-spinner-color-1);
  border-top-color: var(--f-spinner-color-2);
  border-radius: var(--f-spinner-border-radius);
  animation: f-spinner 0.75s linear infinite, f-fadeIn 0.2s ease 0.2s both;
}

@keyframes f-spinner {
  to {
    rotate: 360deg;
  }
}
.f-panzoom, .f-zoomable {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.f-panzoom:before, .f-panzoom:after, .f-zoomable:before, .f-zoomable:after {
  display: block;
  content: "";
}

.f-panzoom:not(.has-controls):before, .f-zoomable:not(.has-controls):before {
  margin-bottom: auto;
}

.f-panzoom:after, .f-zoomable:after {
  margin-top: auto;
}

.f-panzoom.in-fullscreen, .f-zoomable.in-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  margin: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  aspect-ratio: unset !important;
  z-index: 9999;
}

.f-panzoom__wrapper {
  position: relative;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
}

.f-panzoom__wrapper.will-zoom-out {
  cursor: zoom-out;
}

.f-panzoom__wrapper.can-drag {
  cursor: move;
  cursor: grab;
}

.f-panzoom__wrapper.will-zoom-in {
  cursor: zoom-in;
}

.f-panzoom__wrapper.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.f-panzoom__wrapper.has-error {
  display: none;
}

.f-panzoom__content {
  display: block;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
}

.f-panzoom__content.is-lazyloading, .f-panzoom__content.has-lazyerror {
  visibility: hidden;
}

img.f-panzoom__content {
  width: auto;
  height: auto;
  vertical-align: top;
  object-fit: contain;
  transition: none;
  user-select: none;
}

.f-panzoom__wrapper > .f-panzoom__content {
  visibility: hidden;
}

.f-panzoom__viewport {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.f-panzoom__viewport > .f-panzoom__content {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

picture.f-panzoom__content img {
  vertical-align: top;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  transition: none;
  user-select: none;
}

.f-panzoom__protected {
  position: absolute;
  inset: 0;
  z-index: 1;
  user-select: none;
}

html.with-panzoom-in-fullscreen {
  overflow: hidden;
}

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

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

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes f-fadeOut {
  to {
    opacity: 0;
  }
}
.f-crossfadeIn {
  animation: var(--f-transition-duration, 0.2s) ease both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  animation: calc(var(--f-transition-duration, 0.2s) * 0.2) ease calc(var(--f-transition-duration, 0.2s) * 0.8) both f-crossfadeOut;
  z-index: 1;
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes f-crossfadeOut {
  to {
    opacity: 0;
  }
}
.is-horizontal .f-slideIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNextX;
}

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

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

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

@keyframes f-slideInPrevX {
  0% {
    transform: translate(calc(100% + var(--f-carousel-gap, 0)));
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes f-slideInNextX {
  0% {
    transform: translate(calc(-100% - var(--f-carousel-gap, 0)));
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes f-slideOutNextX {
  to {
    transform: translate(calc(-100% - var(--f-carousel-gap, 0)));
  }
}
@keyframes f-slideOutPrevX {
  to {
    transform: translate(calc(100% + var(--f-carousel-gap, 0)));
  }
}
.is-vertical .f-slideIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNextY;
}

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

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

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

@keyframes f-slideInPrevY {
  0% {
    transform: translateY(calc(100% + var(--f-carousel-gap, 0)));
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes f-slideInNextY {
  0% {
    transform: translateY(calc(-100% - var(--f-carousel-gap, 0)));
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes f-slideOutNextY {
  to {
    transform: translateY(calc(-100% - var(--f-carousel-gap, 0)));
  }
}
@keyframes f-slideOutPrevY {
  to {
    transform: translateY(calc(100% + var(--f-carousel-gap, 0)));
  }
}
.f-zoomInUp {
  animation: var(--f-transition-duration, 0.3s) ease both f-zoomInUp;
}

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

@keyframes f-zoomInUp {
  0% {
    transform: scale(var(--f-zoomInUp-scale, 0.975)) translate3d(var(--f-zoomInUp-x, 0), var(--f-zoomInUp-y, 16px), 0);
    opacity: var(--f-zoomInUp-opacity, 0);
  }
  to {
    transform: scale(1) translateZ(0);
    opacity: 1;
  }
}
@keyframes f-zoomOutDown {
  to {
    transform: scale(var(--f-zoomOutDown-scale, 0.975)) translate3d(var(--f-zoomOutDown-x, 0), var(--f-zoomOutDown-y, 16px), 0);
    opacity: 0;
  }
}
.f-throwOutUp {
  animation: var(--f-throwOutUp-duration, 0.2s) ease-out both f-throwOutUp;
}

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

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, calc(var(--f-throwOutUp-y, 150px) * -1), 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, var(--f-throwOutDown-y, 150px), 0);
    opacity: 0;
  }
}
.has-iframe .f-html, .has-pdf .f-html, .has-gmap .f-html {
  width: 100%;
  height: 100%;
  min-height: 1px;
  overflow: visible;
}

.has-pdf .f-html, .has-gmap .f-html {
  padding: 0;
}

.f-html {
  position: relative;
  box-sizing: border-box;
  margin: var(--f-html-margin, 0);
  padding: var(--f-html-padding, 2rem);
  color: var(--f-html-color, currentColor);
  background: var(--f-html-bg);
}

.is-loading > .f-html {
  opacity: 0;
}

.f-html.is-error {
  text-align: center;
}

.f-iframe {
  display: block;
  margin: 0;
  border: 0;
  height: 100%;
  width: 100%;
}

.f-caption {
  align-self: center;
  flex-shrink: 0;
  margin: var(--f-caption-margin);
  padding: var(--f-caption-padding, 16px 8px);
  max-width: 100%;
  max-height: calc(80vh - 100px);
  overflow: auto;
  overflow-wrap: anywhere;
  line-height: var(--f-caption-line-height);
  color: var(--f-caption-color);
  background: var(--f-caption-bg);
  font: var(--f-caption-font);
}

.has-html5video .f-html, .has-youtube .f-html, .has-vimeo .f-html {
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: 1px;
  overflow: visible;
  max-width: var(--f-video-width, 960px);
  max-height: var(--f-video-height, 540px);
  aspect-ratio: var(--f-video-aspect-ratio);
  background: var(--f-video-bg, rgba(0, 0, 0, 0.9));
}

.f-html5video {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: transparent;
}

.f-button.is-arrow {
  --f-button-width: var(--f-arrow-width, 46px);
  --f-button-height: var(--f-arrow-height, 46px);
  --f-button-svg-width: var(--f-arrow-svg-width, 24px);
  --f-button-svg-height: var(--f-arrow-svg-height, 24px);
  --f-button-svg-stroke-width: var(--f-arrow-svg-stroke-width, 1.75);
  --f-button-border-radius: var(--f-arrow-border-radius, unset);
  --f-button-bg: var(--f-arrow-bg, transparent);
  --f-button-hover-bg: var(--f-arrow-hover-bg, var(--f-arrow-bg));
  --f-button-active-bg: var(--f-arrow-active-bg, var(--f-arrow-hover-bg));
  --f-button-shadow: var(--f-arrow-shadow);
  --f-button-color: var(--f-arrow-color);
  --f-button-hover-color: var(--f-arrow-hover-color, var(--f-arrow-color));
  --f-button-active-color: var( --f-arrow-active-color, var(--f-arrow-hover-color) );
  overflow: visible;
}

.f-button.is-arrow.is-prev, .f-button.is-arrow.is-next {
  position: absolute;
  transform: translate(0);
  z-index: 20;
}

.is-horizontal .f-button.is-arrow.is-prev, .is-horizontal .f-button.is-arrow.is-next {
  inset: 50% auto auto;
  transform: translateY(-50%);
}

.is-horizontal.is-ltr .f-button.is-arrow.is-prev {
  left: var(--f-arrow-pos, 0);
}

.is-horizontal.is-ltr .f-button.is-arrow.is-next {
  right: var(--f-arrow-pos, 0);
}

.is-horizontal.is-rtl .f-button.is-arrow.is-prev {
  right: var(--f-arrow-pos, 0);
  transform: translateY(-50%) rotateY(180deg);
}

.is-horizontal.is-rtl .f-button.is-arrow.is-next {
  left: var(--f-arrow-pos, 0);
  transform: translateY(-50%) rotateY(180deg);
}

.is-vertical.is-ltr .f-button.is-arrow.is-prev, .is-vertical.is-rtl .f-button.is-arrow.is-prev {
  top: var(--f-arrow-pos, 0);
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%);
}

.is-vertical.is-ltr .f-button.is-arrow.is-next, .is-vertical.is-rtl .f-button.is-arrow.is-next {
  top: auto;
  right: auto;
  bottom: var(--f-arrow-pos, 0);
  left: 50%;
  transform: translate(-50%);
}

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

.f-carousel__toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  margin: var(--f-toolbar-margin, 0);
  padding: var(--f-toolbar-padding, 8px);
  line-height: var(--f-toolbar-line-height);
  background: var(--f-toolbar-bg, none);
  box-shadow: var(--f-toolbar-shadow, none);
  backdrop-filter: var(--f-toolbar-backdrop-filter);
  position: relative;
  z-index: 20;
  color: var(--f-toolbar-color, currentColor);
  font-size: var(--f-toolbar-font-size, 17px);
  font-weight: var(--f-toolbar-font-weight, inherit);
  font-family: var(--f-toolbar-font, -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif);
  text-shadow: var(--f-toolbar-text-shadow);
  text-align: center;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  white-space: nowrap;
  pointer-events: none;
}

.f-carousel__toolbar.is-absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.f-carousel__toolbar .f-button:focus-visible {
  position: relative;
  z-index: 1;
}

.f-carousel__toolbar__column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: var(--f-toolbar-gap, 0);
}

.f-carousel__toolbar__column.is-left {
  display: flex;
  justify-self: flex-start;
  justify-content: flex-start;
}

.f-carousel__toolbar__column.is-middle {
  display: flex;
  justify-content: center;
}

.f-carousel__toolbar__column.is-right {
  display: flex;
  justify-self: flex-end;
  justify-content: flex-end;
  flex-flow: nowrap;
}

.f-carousel__toolbar__column {
  pointer-events: none;
}

.f-carousel__toolbar__column > * {
  pointer-events: all;
}

.f-counter {
  position: relative;
  display: flex;
  flex-direction: row;
  cursor: default;
  user-select: none;
  margin: var(--f-counter-margin, 0);
  padding: var(--f-counter-padding, 4px);
  line-height: var(--f-counter-line-height);
  background: var(--f-counter-bg);
  border-radius: var(--f-counter-border-radius);
}

.f-counter span {
  padding: 0 var(--f-counter-gap, 4px);
}

:root {
  --f-thumbs-gap: 8px;
  --f-thumbs-margin: 0;
  --f-thumbs-padding-x: 8px;
  --f-thumbs-padding-y: 8px;
  --f-thumbs-bg: transparent;
  --f-thumbs-transition: max-height .3s ease, max-width .3s ease, padding .3s ease;
  --f-thumbs-z-index: 1;
  --f-thumbs-viewport-padding-x: 0px;
  --f-thumbs-viewport-padding-y: 0px;
  --f-thumb-width: 94px;
  --f-thumb-height: 76px;
  --f-thumb-clip-width: 46px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-opacity: 1;
  --f-thumb-transition: opacity .3s ease, transform .15s ease;
  --f-thumb-border: none;
  --f-thumb-border-radius: 4px;
  --f-thumb-shadow: none;
  --f-thumb-bg: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .05));
  --f-thumb-focus-shadow: inset 0 0 0 .8px #222, inset 0 0 0 2.25px #fff;
  --f-thumb-selected-shadow: inset 0 0 0 .8px #222, inset 0 0 0 2.25px #fff;
  --f-thumb-border-transition: all .1s ease;
  --f-thumb-img-width: 100%;
  --f-thumb-img-height: 100%;
  --f-thumb-img-fit: cover;
  --f-thumb-img-position: 50% 20%;
}

.f-thumbs {
  --f-carousel-slide-width: var(--f-thumb-width);
  --f-carousel-slide-height: var(--f-thumb-height);
  --f-carousel-gap: var(--f-thumbs-gap);
  position: relative;
  box-sizing: border-box;
  flex-shrink: 0;
  margin: var(--f-thumbs-margin);
  padding: var(--f-thumbs-padding-y) var(--f-thumbs-padding-x);
  overflow: hidden;
  background: var(--f-thumbs-bg);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  transition: var(--f-thumbs-transition);
  z-index: var(--f-thumbs-z-index);
}

.f-thumbs.is-horizontal {
  max-height: calc(var(--f-carousel-slide-height) + var(--f-thumbs-padding-y) * 2);
}

.f-thumbs.is-horizontal.is-hidden {
  max-height: 0;
  --f-thumbs-padding-y: 0;
}

.f-thumbs.is-vertical {
  max-width: calc(var(--f-carousel-slide-width) + var(--f-thumbs-padding-x) * 2);
}

.f-thumbs.is-vertical.is-hidden {
  max-width: 0;
  --f-thumbs-padding-x: 0;
}

.f-thumbs.is-scrollable.is-hidden {
  max-height: 0;
  --f-thumbs-padding-y: 0;
}

.f-thumbs.is-ltr {
  direction: ltr;
}

.f-thumbs.is-rtl {
  direction: rtl;
}

.f-thumbs img {
  display: block;
  width: var(--f-thumb-img-width);
  height: var(--f-thumb-img-height);
  object-fit: var(--f-thumb-img-fit);
  object-position: var(--f-thumb-img-position);
  pointer-events: none;
  border-radius: inherit;
  color: transparent;
}

.f-thumbs img[data-lazy-src] {
  visibility: hidden;
}

.f-thumbs img.has-lazyerror {
  display: none;
}

.f-thumbs__viewport {
  box-sizing: border-box;
  height: 100%;
  padding: var(--f-thumbs-viewport-padding-y) var(--f-thumbs-viewport-padding-x);
  overflow: visible;
  display: grid;
}

.f-thumbs__slide {
  position: relative;
  box-sizing: border-box;
  grid-area: 1/1;
  width: var(--f-carousel-slide-width);
  height: var(--f-carousel-slide-height);
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  overflow: visible;
}

.f-thumbs__slide:hover button {
  opacity: var(--f-thumb-hover-opacity, 1);
  transform: var(--f-thumb-hover-transform, none);
}

.f-thumbs__slide:hover button:after {
  border: var(--f-thumb-hover-border, none);
  box-shadow: var(--f-thumb-hover-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide button {
  all: unset;
  display: block;
  margin: auto;
  padding: 0;
  position: relative;
  overflow: visible;
  width: 100%;
  height: 100%;
  outline: none;
  transition: var(--f-thumb-transition);
  border-radius: var(--f-thumb-border-radius);
  opacity: var(--f-thumb-opacity);
  transform: var(--f-thumb-transform);
  background: var(--f-thumb-bg);
}

.f-thumbs__slide button:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: var(--f-thumb-border-transition);
  border-radius: inherit;
  border: var(--f-thumb-border);
  box-shadow: var(--f-thumb-shadow);
}

.f-thumbs__slide button:focus-within {
  opacity: var(--f-thumb-focus-opacity, 1);
  transform: var(--f-thumb-focus-transform, none);
}

.f-thumbs__slide button:focus-within:after {
  border: var(--f-thumb-focus-border, none);
  box-shadow: var(--f-thumb-focus-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide:active {
  opacity: var(--f-thumb-active-opacity, 1);
  transform: var(--f-thumb-active-transform, none);
}

.f-thumbs__slide:active:after {
  border: var(--f-thumb-active-border, none);
  box-shadow: var(--f-thumb-active-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide.is-selected {
  z-index: 2;
}

.f-thumbs__slide.is-selected button {
  opacity: var(--f-thumb-selected-opacity, 1);
  transform: var(--f-thumb-selected-transform, none);
}

.f-thumbs__slide.is-selected button:after {
  border: var(--f-thumb-selected-border, none);
  box-shadow: var(--f-thumb-selected-shadow, var(--f-thumb-shadow));
}

.f-thumbs.is-modern {
  --f-carousel-slide-width: calc( var(--f-thumb-clip-width) + var(--f-thumbs-gap) );
  --f-carousel-slide-height: var(--f-thumb-height);
  --f-carousel-gap: 0;
  --width-diff: calc((var(--f-thumb-width) - var(--f-thumb-clip-width)));
}

.f-thumbs.is-modern .f-thumbs__viewport {
  width: calc(100% + var(--f-carousel-slide-width) * 2 + var(--f-thumbs-padding-x));
  margin-inline: calc((var(--f-carousel-slide-width) + var(--f-thumbs-padding-x)) * -1);
}

.f-thumbs.is-modern .f-thumbs__slide {
  --clip-shift: calc((var(--width-diff) * .5) * var(--progress));
  --clip-path: inset( 0 var(--clip-shift) round var(--f-thumb-border-radius, 0) );
  padding: 0;
  overflow: visible;
  left: var(--shift, 0);
  will-change: left;
  transition: left var(--f-transition-duration) var(--f-transition-easing);
}

.f-thumbs.is-modern .f-thumbs__slide button {
  display: block;
  margin-inline: 50%;
  width: var(--f-thumb-width);
  clip-path: var(--clip-path);
  border: none;
  box-shadow: none;
  transition: clip-path var(--f-transition-duration) var(--f-transition-easing), opacity var(--f-thumb-transition-duration, 0.2s) var(--f-thumb-transition-easing, ease);
}

.f-thumbs.is-modern .f-thumbs__slide button:after {
  display: none;
}

.f-thumbs.is-modern .f-thumbs__slide:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs.is-modern .f-thumbs__slide:focus-within:not(.is-selected) button:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: var(--clip-shift);
  bottom: 0;
  right: var(--clip-shift);
  transition: border var(--f-transition-duration) var(--f-transition-easing), box-shadow var(--f-transition-duration) var(--f-transition-easing);
  border-radius: inherit;
  border: var(--f-thumb-focus-border, none);
  box-shadow: var(--f-thumb-focus-shadow, none);
}

.f-thumbs.is-modern {
  --f-transition-duration: .25s;
  --f-transition-easing: ease-out;
}

.f-thumbs.is-modern.is-syncing {
  --f-transition-duration: 0s;
}

.f-thumbs.is-scrollable .f-thumbs__viewport {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--f-thumb-width), 1fr));
  grid-auto-rows: var(--f-thumb-height);
  gap: var(--f-thumbs-gap);
  overflow: auto;
  overscroll-behavior: contain;
  user-select: none;
}

.f-thumbs.is-scrollable .f-thumbs__viewport .f-thumbs__slide {
  grid-area: auto;
  display: block;
  position: relative;
  max-width: 100%;
  width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  cursor: pointer;
  outline: none;
}

:root {
  --f-progressbar-height: 3px;
  --f-progressbar-color: var(--f-carousel-theme-color, #575ad6);
  --f-progressbar-opacity: 1;
  --f-progressbar-z-index: 30;
}

.f-progressbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--f-progressbar-z-index);
  height: var(--f-progressbar-height);
  transform: scaleX(0);
  transform-origin: 0;
  opacity: var(--f-progressbar-opacity);
  background: var(--f-progressbar-color);
  user-select: none;
  pointer-events: none;
  animation-name: f-progressbar;
  animation-play-state: running;
  animation-timing-function: linear;
}

.f-progressbar:empty {
  display: block;
}

button > .f-progressbar {
  --f-progressbar-height: 100%;
  --f-progressbar-opacity: .2;
}

@keyframes f-progressbar {
  0% {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
[data-fullscreen-action=toggle] svg g:first-child {
  display: flex;
}

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

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

:fullscreen [data-fullscreen-action=toggle] svg g:last-child {
  display: flex;
}

.in-fullscreen-mode > .f-carousel {
  flex: 1;
  min-width: 0 !important;
  min-height: 0 !important;
}

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

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

.fancybox__dialog {
  position: fixed;
  inset: 0;
  z-index: 1050;
  width: 100%;
  height: 100vh;
  max-height: unset;
  max-width: unset;
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
  background: transparent;
  touch-action: none;
  overscroll-behavior: contain;
}

.fancybox__dialog:focus {
  outline: none;
}

.fancybox__dialog::backdrop {
  opacity: 0;
}

@supports (height: 100dvh) {
  .fancybox__dialog {
    height: 100dvh;
  }
}
.fancybox__dialog *:empty {
  display: block;
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-backdrop-bg: rgba(24, 24, 27, .95);
  --f-toolbar-margin: 0;
  --f-toolbar-padding: 8px;
  --f-toolbar-gap: 0;
  --f-toolbar-color: #ddd;
  --f-toolbar-font-size: 16px;
  --f-toolbar-font-weight: 500;
  --f-toolbar-font: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  --f-toolbar-line-height: var(--f-button-height);
  --f-toolbar-text-shadow: 1px 1px 1px rgba(0, 0, 0, .75);
  --f-toolbar-shadow: none;
  --f-toolbar-bg: none;
  --f-counter-margin: 0;
  --f-counter-padding: 0px 10px;
  --f-counter-gap: 4px;
  --f-counter-line-height: var(--f-button-height);
  --f-carousel-gap: 17px;
  --f-carousel-slide-width: 100%;
  --f-carousel-slide-height: 100%;
  --f-carousel-slide-padding: 0;
  --f-carousel-slide-bg: unset;
  --f-html-color: #222;
  --f-html-bg: #fff;
  --f-error-color: #fff;
  --f-error-bg: #333;
  --f-caption-margin: 0;
  --f-caption-padding: 16px 8px;
  --f-caption-color: var(--fancybox-color, #dbdbdb);
  --f-caption-bg: transparent;
  --f-caption-font: inherit;
  --f-caption-line-height: 1.375;
  --f-spinner-color-1: rgba(255, 255, 255, .2);
  --f-spinner-color-2: rgba(255, 255, 255, .8);
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-border-radius: 50%;
  --f-spinner-border-width: 4px;
  --f-progressbar-color: rgba(255, 255, 255);
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: #ddd;
  --f-button-hover-color: #fff;
  --f-button-outline-width: 1px;
  --f-button-outline-color: rgba(255, 255, 255, .75);
  --f-button-outline-offset: 0px;
  --f-button-bg: rgba(54, 54, 54, .75);
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-shadow: none;
  --f-button-transition: all .2s ease;
  --f-button-transform: none;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.75;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, .01)), drop-shadow(1px 2px 1px rgba(24, 24, 27, .05));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: .5;
  --f-arrow-pos: 32px;
  --f-arrow-width: 50px;
  --f-arrow-height: 50px;
  --f-arrow-svg-width: 24px;
  --f-arrow-svg-height: 24px;
  --f-arrow-svg-stroke-width: 2.5;
  --f-arrow-border-radius: 50%;
  --f-arrow-bg: rgba(54, 54, 54, .65);
  --f-arrow-color: #ddd;
  --f-arrow-hover-color: #fff;
  --f-close-button-width: 30px;
  --f-close-button-height: 30px;
  --f-close-button-svg-width: 24px;
  --f-close-button-svg-height: 24px;
  --f-close-button-svg-stroke-width: 1.75;
  --f-close-border-radius: 4px;
  --f-close-button-color: #fff;
  --f-close-button-hover-color: #fff;
  --f-close-button-bg: transparent;
  --f-close-button-hover-bg: transparent;
  --f-close-button-active-bg: transparent;
  --f-thumbs-margin: 0px;
  --f-thumbs-padding-x: 8px;
  --f-thumbs-padding-y: 8px;
  --f-thumbs-bg: none;
  --f-thumb-transition: all .2s ease;
  --f-thumb-width: 94px;
  --f-thumb-height: 76px;
  --f-thumb-opacity: 1;
  --f-thumb-border: none;
  --f-thumb-shadow: none;
  --f-thumb-transform: none;
  --f-thumb-focus-opacity: 1;
  --f-thumb-focus-border: none;
  --f-thumb-focus-shadow: inset 0 0 0 2px rgba(255, 255, 255, .65);
  --f-thumb-focus-transform: none;
  --f-thumb-hover-opacity: 1;
  --f-thumb-hover-border: none;
  --f-thumb-hover-transform: none;
  --f-thumb-active-opacity: var(--f-thumb-hover-opacity);
  --f-thumb-active-border: var(--f-thumb-hover-border);
  --f-thumb-active-transform: var(--f-thumb-hover-transform);
  --f-thumb-selected-opacity: 1;
  --f-thumb-selected-border: none;
  --f-thumb-selected-shadow: inset 0 0 0 2px #fff;
  --f-thumb-selected-transform: none;
  --f-scrollbar-width: 7px;
  --f-scrollbar-track-bg: #444;
  --f-scrollbar-track-border-radius: 10px;
  --f-scrollbar-track-shadow: inset 0 0 6px rgba(0, 0, 0, .2);
  --f-scrollbar-thumb-bg: #ddd;
  --f-scrollbar-thumb-border-radius: 10px;
}

.fancybox__container[theme=light] {
  --fancybox-color: #222;
  --fancybox-backdrop-bg: rgba(255, 255, 255, .97);
  --f-toolbar-color: var(--fancybox-color, #222);
  --f-toolbar-text-shadow: none;
  --f-toolbar-font-weight: 400;
  --f-html-color: var(--fancybox-color, #222);
  --f-html-bg: #fff;
  --f-error-color: #555;
  --f-error-bg: #fff;
  --f-video-bg: #fff;
  --f-caption-color: #333;
  --f-spinner-color-1: rgba(0, 0, 0, .2);
  --f-spinner-color-2: rgba(0, 0, 0, .8);
  --f-spinner-border-width: 3.5px;
  --f-progressbar-color: rgba(111, 111, 116);
  --f-button-color: #333;
  --f-button-hover-color: #000;
  --f-button-outline-color: rgba(0, 0, 0, .85);
  --f-button-bg: rgba(255, 255, 255, .85);
  --f-button-svg-stroke-width: 1.3;
  --f-button-svg-filter: none;
  --f-arrow-bg: rgba(255, 255, 255, .85);
  --f-arrow-color: #333;
  --f-arrow-hover-color: #000;
  --f-arrow-svg-stroke-width: 1.3;
  --f-close-button-color: #555;
  --f-close-button-hover-color: #000;
  --f-thumb-bg: linear-gradient(#ebeff2, #e2e8f0);
  --f-thumb-focus-shadow: 0 0 0 1.8px #fff, 0px 0px 0px 2.25px #888;
  --f-thumb-selected-shadow: 0 0 0 1.8px #fff, 0px 0px 0px 2.25px #000;
  --f-scrollbar-track-bg: #ddd;
  --f-scrollbar-thumb-bg: #444;
}

.fancybox__container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.fancybox__container:focus {
  outline: none;
}

.fancybox__container.has-vertical-thumbs {
  flex-direction: row-reverse;
}

.fancybox__container.has-vertical-thumbs:not(.is-closing) .fancybox__viewport {
  overflow-x: clip;
  overflow-y: visible;
}

.fancybox__container > *:not(.fancybox__carousel), .fancybox__container .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container .fancybox__carousel > .fancybox__viewport > .fancybox__slide:not(.is-selected), .fancybox__container .fancybox__carousel > .fancybox__viewport > .fancybox__slide.is-selected > *:not(.f-html, .f-panzoom__wrapper, .f-spinner) {
  opacity: var(--f-drag-opacity, 1);
}

.fancybox__container:not(.is-ready, .is-hiding) {
  visibility: hidden;
}

.fancybox__container.is-revealing > *:not(.fancybox__carousel), .fancybox__container.is-revealing .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-revealing .fancybox__carousel > .fancybox__viewport > .fancybox__slide:not(.is-selected), .fancybox__container.is-revealing .fancybox__carousel > .fancybox__viewport > .fancybox__slide.is-selected > *:not(.f-html, .f-panzoom__wrapper, .f-spinner) {
  animation: var(--f-interface-enter-duration, 0.35s) ease none f-fadeIn;
}

.fancybox__container.is-hiding > *:not(.fancybox__carousel), .fancybox__container.is-hiding .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-hiding .fancybox__carousel > .fancybox__viewport > .fancybox__slide.is-selected > *:not(.f-html, .f-panzoom__wrapper) {
  animation: var(--f-interface-exit-duration, 0.35s) ease forwards f-fadeOut;
}

.fancybox__container.is-hiding .fancybox__carousel .fancybox__slide:not(.is-selected) {
  opacity: 0;
}

.fancybox__container.is-hiding {
  pointer-events: none;
}

.fancybox__container.is-idle .f-carousel__toolbar {
  pointer-events: none;
  opacity: 0;
}

.fancybox__container.is-idle .f-button.is-arrow {
  opacity: 0;
}

.fancybox__container.is-idle.is-ready .f-carousel__toolbar {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__container.is-idle.is-ready .f-button.is-arrow {
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--fancybox-backdrop-bg);
}

.fancybox__carousel {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
  position: relative;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__carousel.is-vertical {
  --f-carousel-slide-height: 100%;
}

.fancybox__carousel.is-ltr {
  direction: ltr;
}

.fancybox__carousel.is-rtl {
  direction: rtl;
}

.fancybox__carousel > .f-button.is-arrow:before {
  position: absolute;
  content: "";
  inset: -30px;
  z-index: 1;
}

.fancybox__viewport {
  display: grid;
  flex: 1;
  min-height: 0;
  min-width: 0;
  position: relative;
  overflow: visible;
  transform: translate3d(0, var(--f-drag-offset, 0), 0);
}

.fancybox__viewport.is-draggable {
  cursor: move;
  cursor: grab;
}

.fancybox__viewport.is-dragging {
  cursor: move;
  cursor: grabbing;
}

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

.fancybox__slide {
  box-sizing: border-box;
  position: relative;
  grid-area: 1/1;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: var(--f-carousel-slide-width);
  height: var(--f-carousel-slide-height);
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  margin: 0;
  padding: var(--f-carousel-slide-padding);
  background: var(--f-carousel-slide-bg);
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

.fancybox__slide:before, .fancybox__slide:after {
  display: block;
  content: "";
}

.fancybox__slide:before {
  margin-bottom: auto;
}

.fancybox__slide:after {
  margin-top: auto;
}

.fancybox__slide.is-selected {
  z-index: 1;
}

.fancybox__slide.f-zoomable {
  overflow: visible;
}

.fancybox__slide.has-error {
  --f-html-color: var(--f-error-color, --f-html-color);
  --f-html-bg: var(--f-error-bg, --f-html-bg);
}

.fancybox__slide.has-html {
  overflow: auto;
  padding: 8px;
}

.fancybox__slide.has-iframe {
  overflow: hidden;
  padding: 8px 0;
}

.fancybox__slide.has-close-btn {
  padding-top: 34px;
}

.fancybox__slide.has-controls:before {
  margin: 0;
}

.fancybox__slide .f-spinner {
  cursor: pointer;
}

.fancybox__container.is-closing .f-caption, .fancybox__slide.is-loading .f-caption {
  visibility: hidden;
}

.fancybox__container.is-closing .fancybox__carousel {
  overflow: visible;
}

.f-button.is-close-button {
  --f-button-width: var(--f-close-button-width);
  --f-button-height: var(--f-close-button-height);
  --f-button-border-radius: var(--f-close-border-radius);
  --f-button-color: var(--f-close-button-color);
  --f-button-hover-color: var(--f-close-button-hover-color);
  --f-button-bg: var(--f-close-button-bg);
  --f-button-hover-bg: var(--f-close-button-hover-bg);
  --f-button-active-bg: var(--f-close-button-active-bg);
  --f-button-svg-width: var(--f-close-button-svg-width);
  --f-button-svg-height: var(--f-close-button-svg-height);
  --f-button-svg-stroke-width: var(--f-close-button-svg-stroke-width);
  position: absolute;
  top: calc((var(--f-button-height) + 2px) * -1);
  right: 0;
  z-index: 10;
}

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

.fancybox__thumbs {
  flex: 0 1 100%;
}

.fancybox__thumbs.is-scrollable {
  --f-thumbs-cols: 1;
  --f-thumbs-gap: 8px;
  --f-thumbs-transition: none;
  --f-thumbs-padding-x: 4px;
  --f-thumbs-padding-y: 8px;
  --f-thumbs-viewport-padding-x: 4px;
  --f-thumbs-viewport-padding-y: 0px;
  max-width: calc(var(--f-thumb-width) * var(--f-thumbs-cols) + var(--f-thumbs-gap) * (var(--f-thumbs-cols) - 1) + var(--f-thumbs-padding-x) * 2 + var(--f-thumbs-viewport-padding-x) * 2);
}

.fancybox__thumbs.is-scrollable ::-webkit-scrollbar {
  width: var(--f-scrollbar-width);
}

.fancybox__thumbs.is-scrollable ::-webkit-scrollbar-track {
  background: var(--f-scrollbar-track-bg);
  border-radius: var(--f-scrollbar-track-border-radius);
  box-shadow: var(--f-scrollbar-track-shadow);
}

.fancybox__thumbs.is-scrollable ::-webkit-scrollbar-thumb {
  background: var(--f-scrollbar-thumb-bg);
  border-radius: var(--f-scrollbar-thumb-border-radius);
}

.fancybox__thumbs.is-scrollable.is-hidden {
  max-width: 0;
  --f-thumbs-padding-x: 0;
  max-height: unset;
  --f-thumbs-padding-y: unset;
}

.fancybox__thumbs.is-scrollable .f-thumbs__viewport {
  overflow-x: hidden !important;
  grid-template-columns: repeat(auto-fill, calc((100% - var(--f-thumbs-gap) * (var(--f-thumbs-cols) - 1)) / var(--f-thumbs-cols))) !important;
}
/*!******************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js!./node_modules/filepond/dist/filepond.min.css ***!
  \******************************************************************************************************************************************************************/
/*!
 * FilePond 4.32.10
 * Licensed under MIT, https://opensource.org/licenses/MIT/
 * Please visit https://pqina.nl/filepond/ for details.
 */
/* eslint-disable */
.filepond--assistant {
  position: absolute;
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  white-space: nowrap;
}

.filepond--browser.filepond--browser {
  position: absolute;
  margin: 0;
  padding: 0;
  left: 1em;
  top: 1.75em;
  width: calc(100% - 2em);
  opacity: 0;
  font-size: 0;
}

.filepond--data {
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border: none;
  visibility: hidden;
  pointer-events: none;
  contain: strict;
}

.filepond--drip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  opacity: 0.1;
  pointer-events: none;
  border-radius: 0.5em;
  background: rgba(0, 0, 0, 0.01);
}

.filepond--drip-blob {
  -webkit-transform-origin: center center;
  transform-origin: center center;
  width: 8em;
  height: 8em;
  margin-left: -4em;
  margin-top: -4em;
  background: #292625;
  border-radius: 50%;
}

.filepond--drip-blob, .filepond--drop-label {
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform, opacity;
}

.filepond--drop-label {
  right: 0;
  margin: 0;
  color: #4f4f4f;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.filepond--drop-label.filepond--drop-label label {
  display: block;
  margin: 0;
  padding: 0.5em;
}

.filepond--drop-label label {
  cursor: default;
  font-size: 0.875em;
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
}

.filepond--label-action {
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  -webkit-text-decoration-color: #a7a4a4;
  text-decoration-color: #a7a4a4;
  cursor: pointer;
}

.filepond--root[data-disabled] .filepond--drop-label label {
  opacity: 0.5;
}

.filepond--file-action-button.filepond--file-action-button {
  font-size: 1em;
  width: 1.625em;
  height: 1.625em;
  font-family: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  will-change: transform, opacity;
}

.filepond--file-action-button.filepond--file-action-button span {
  position: absolute;
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  white-space: nowrap;
}

.filepond--file-action-button.filepond--file-action-button svg {
  width: 100%;
  height: 100%;
}

.filepond--file-action-button.filepond--file-action-button:after {
  position: absolute;
  left: -0.75em;
  right: -0.75em;
  top: -0.75em;
  bottom: -0.75em;
  content: "";
}

.filepond--file-action-button {
  cursor: auto;
  color: #fff;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: none;
  box-shadow: 0 0 0 0 hsla(0, 0%, 100%, 0);
  transition: box-shadow 0.25s ease-in;
}

.filepond--file-action-button:focus, .filepond--file-action-button:hover {
  box-shadow: 0 0 0 0.125em hsla(0, 0%, 100%, 0.9);
}

.filepond--file-action-button[disabled] {
  color: hsla(0, 0%, 100%, 0.5);
  background-color: rgba(0, 0, 0, 0.25);
}

.filepond--file-action-button[hidden] {
  display: none;
}

.filepond--action-edit-item.filepond--action-edit-item {
  width: 2em;
  height: 2em;
  padding: 0.1875em;
}

.filepond--action-edit-item.filepond--action-edit-item[data-align*=center] {
  margin-left: -0.1875em;
}

.filepond--action-edit-item.filepond--action-edit-item[data-align*=bottom] {
  margin-bottom: -0.1875em;
}

.filepond--action-edit-item-alt {
  border: none;
  line-height: inherit;
  background: transparent;
  font-family: inherit;
  color: inherit;
  outline: none;
  padding: 0;
  margin: 0 0 0 0.25em;
  pointer-events: all;
  position: absolute;
}

.filepond--action-edit-item-alt svg {
  width: 1.3125em;
  height: 1.3125em;
}

.filepond--action-edit-item-alt span {
  font-size: 0;
  opacity: 0;
}

.filepond--file-info {
  position: static;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  margin: 0 0.5em 0 0;
  min-width: 0;
  will-change: transform, opacity;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.filepond--file-info * {
  margin: 0;
}

.filepond--file-info .filepond--file-info-main {
  font-size: 0.75em;
  line-height: 1.2;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.filepond--file-info .filepond--file-info-sub {
  font-size: 0.625em;
  opacity: 0.5;
  transition: opacity 0.25s ease-in-out;
  white-space: nowrap;
}

.filepond--file-info .filepond--file-info-sub:empty {
  display: none;
}

.filepond--file-status {
  position: static;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-grow: 0;
  flex-shrink: 0;
  margin: 0;
  min-width: 2.25em;
  text-align: right;
  will-change: transform, opacity;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.filepond--file-status * {
  margin: 0;
  white-space: nowrap;
}

.filepond--file-status .filepond--file-status-main {
  font-size: 0.75em;
  line-height: 1.2;
}

.filepond--file-status .filepond--file-status-sub {
  font-size: 0.625em;
  opacity: 0.5;
  transition: opacity 0.25s ease-in-out;
}

.filepond--file-wrapper.filepond--file-wrapper {
  border: none;
  margin: 0;
  padding: 0;
  min-width: 0;
  height: 100%;
}

.filepond--file-wrapper.filepond--file-wrapper > legend {
  position: absolute;
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  white-space: nowrap;
}

.filepond--file {
  position: static;
  display: flex;
  height: 100%;
  align-items: flex-start;
  padding: 0.5625em;
  color: #fff;
  border-radius: 0.5em;
}

.filepond--file .filepond--file-status {
  margin-left: auto;
  margin-right: 2.25em;
}

.filepond--file .filepond--processing-complete-indicator {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 3;
}

.filepond--file .filepond--file-action-button, .filepond--file .filepond--processing-complete-indicator, .filepond--file .filepond--progress-indicator {
  position: absolute;
}

.filepond--file [data-align*=left] {
  left: 0.5625em;
}

.filepond--file [data-align*=right] {
  right: 0.5625em;
}

.filepond--file [data-align*=center] {
  left: calc(50% - 0.8125em);
}

.filepond--file [data-align*=bottom] {
  bottom: 1.125em;
}

.filepond--file [data-align=center] {
  top: calc(50% - 0.8125em);
}

.filepond--file .filepond--progress-indicator {
  margin-top: 0.1875em;
}

.filepond--file .filepond--progress-indicator[data-align*=right] {
  margin-right: 0.1875em;
}

.filepond--file .filepond--progress-indicator[data-align*=left] {
  margin-left: 0.1875em;
}

[data-filepond-item-state*=error] .filepond--file-info, [data-filepond-item-state*=invalid] .filepond--file-info, [data-filepond-item-state=cancelled] .filepond--file-info {
  margin-right: 2.25em;
}

[data-filepond-item-state~=processing] .filepond--file-status-sub {
  opacity: 0;
}

[data-filepond-item-state~=processing] .filepond--action-abort-item-processing ~ .filepond--file-status .filepond--file-status-sub {
  opacity: 0.5;
}

[data-filepond-item-state=processing-error] .filepond--file-status-sub {
  opacity: 0;
}

[data-filepond-item-state=processing-error] .filepond--action-retry-item-processing ~ .filepond--file-status .filepond--file-status-sub {
  opacity: 0.5;
}

[data-filepond-item-state=processing-complete] .filepond--action-revert-item-processing svg {
  -webkit-animation: fall 0.5s linear 0.125s both;
  animation: fall 0.5s linear 0.125s both;
}

[data-filepond-item-state=processing-complete] .filepond--file-status-sub {
  opacity: 0.5;
}

[data-filepond-item-state=processing-complete] .filepond--file-info-sub, [data-filepond-item-state=processing-complete] .filepond--processing-complete-indicator:not([style*=hidden]) ~ .filepond--file-status .filepond--file-status-sub {
  opacity: 0;
}

[data-filepond-item-state=processing-complete] .filepond--action-revert-item-processing ~ .filepond--file-info .filepond--file-info-sub {
  opacity: 0.5;
}

[data-filepond-item-state*=error] .filepond--file-wrapper, [data-filepond-item-state*=error] .filepond--panel, [data-filepond-item-state*=invalid] .filepond--file-wrapper, [data-filepond-item-state*=invalid] .filepond--panel {
  -webkit-animation: shake 0.65s linear both;
  animation: shake 0.65s linear both;
}

[data-filepond-item-state*=busy] .filepond--progress-indicator svg {
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@-webkit-keyframes shake {
  10%, 90% {
    -webkit-transform: translateX(-0.0625em);
    transform: translateX(-0.0625em);
  }
  20%, 80% {
    -webkit-transform: translateX(0.125em);
    transform: translateX(0.125em);
  }
  30%, 50%, 70% {
    -webkit-transform: translateX(-0.25em);
    transform: translateX(-0.25em);
  }
  40%, 60% {
    -webkit-transform: translateX(0.25em);
    transform: translateX(0.25em);
  }
}
@keyframes shake {
  10%, 90% {
    -webkit-transform: translateX(-0.0625em);
    transform: translateX(-0.0625em);
  }
  20%, 80% {
    -webkit-transform: translateX(0.125em);
    transform: translateX(0.125em);
  }
  30%, 50%, 70% {
    -webkit-transform: translateX(-0.25em);
    transform: translateX(-0.25em);
  }
  40%, 60% {
    -webkit-transform: translateX(0.25em);
    transform: translateX(0.25em);
  }
}
@-webkit-keyframes fall {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  70% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes fall {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  70% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.filepond--hopper[data-hopper-state=drag-over] > * {
  pointer-events: none;
}

.filepond--hopper[data-hopper-state=drag-over]:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
}

.filepond--progress-indicator {
  z-index: 103;
}

.filepond--file-action-button {
  z-index: 102;
}

.filepond--file-status {
  z-index: 101;
}

.filepond--file-info {
  z-index: 100;
}

.filepond--item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 0;
  margin: 0.25em;
  will-change: transform, opacity;
  touch-action: auto;
}

.filepond--item > .filepond--panel {
  z-index: -1;
}

.filepond--item > .filepond--panel .filepond--panel-bottom {
  box-shadow: 0 0.0625em 0.125em -0.0625em rgba(0, 0, 0, 0.25);
}

.filepond--item > .filepond--file-wrapper, .filepond--item > .filepond--panel {
  transition: opacity 0.15s ease-out;
}

.filepond--item[data-drag-state] {
  cursor: -webkit-grab;
  cursor: grab;
}

.filepond--item[data-drag-state] > .filepond--panel {
  transition: box-shadow 0.125s ease-in-out;
  box-shadow: 0 0 0 transparent;
}

.filepond--item[data-drag-state=drag] {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.filepond--item[data-drag-state=drag] > .filepond--panel {
  box-shadow: 0 0.125em 0.3125em rgba(0, 0, 0, 0.325);
}

.filepond--item[data-drag-state]:not([data-drag-state=idle]) {
  z-index: 2;
}

.filepond--item-panel {
  background-color: #64605e;
}

[data-filepond-item-state=processing-complete] .filepond--item-panel {
  background-color: #369763;
}

[data-filepond-item-state*=error] .filepond--item-panel, [data-filepond-item-state*=invalid] .filepond--item-panel {
  background-color: #c44e47;
}

.filepond--item-panel {
  border-radius: 0.5em;
  transition: background-color 0.25s;
}

.filepond--list-scroller {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  will-change: transform;
}

.filepond--list-scroller[data-state=overflow] .filepond--list {
  bottom: 0;
  right: 0;
}

.filepond--list-scroller[data-state=overflow] {
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-mask: linear-gradient(180deg, #000 calc(100% - 0.5em), transparent);
  mask: linear-gradient(180deg, #000 calc(100% - 0.5em), transparent);
}

.filepond--list-scroller::-webkit-scrollbar {
  background: transparent;
}

.filepond--list-scroller::-webkit-scrollbar:vertical {
  width: 1em;
}

.filepond--list-scroller::-webkit-scrollbar:horizontal {
  height: 0;
}

.filepond--list-scroller::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 99999px;
  border: 0.3125em solid transparent;
  background-clip: content-box;
}

.filepond--list.filepond--list {
  position: absolute;
  top: 0;
  margin: 0;
  padding: 0;
  list-style-type: none;
  will-change: transform;
}

.filepond--list {
  left: 0.75em;
  right: 0.75em;
}

.filepond--root[data-style-panel-layout~=integrated] {
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
}

.filepond--root[data-style-panel-layout~=circle] .filepond--panel-root, .filepond--root[data-style-panel-layout~=integrated] .filepond--panel-root {
  border-radius: 0;
}

.filepond--root[data-style-panel-layout~=circle] .filepond--panel-root > *, .filepond--root[data-style-panel-layout~=integrated] .filepond--panel-root > * {
  display: none;
}

.filepond--root[data-style-panel-layout~=circle] .filepond--drop-label, .filepond--root[data-style-panel-layout~=integrated] .filepond--drop-label {
  bottom: 0;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 7;
}

.filepond--root[data-style-panel-layout~=circle] .filepond--item-panel, .filepond--root[data-style-panel-layout~=integrated] .filepond--item-panel {
  display: none;
}

.filepond--root[data-style-panel-layout~=compact] .filepond--list-scroller, .filepond--root[data-style-panel-layout~=integrated] .filepond--list-scroller {
  overflow: hidden;
  height: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.filepond--root[data-style-panel-layout~=compact] .filepond--list, .filepond--root[data-style-panel-layout~=integrated] .filepond--list {
  left: 0;
  right: 0;
  height: 100%;
}

.filepond--root[data-style-panel-layout~=compact] .filepond--item, .filepond--root[data-style-panel-layout~=integrated] .filepond--item {
  margin: 0;
}

.filepond--root[data-style-panel-layout~=compact] .filepond--file-wrapper, .filepond--root[data-style-panel-layout~=integrated] .filepond--file-wrapper {
  height: 100%;
}

.filepond--root[data-style-panel-layout~=compact] .filepond--drop-label, .filepond--root[data-style-panel-layout~=integrated] .filepond--drop-label {
  z-index: 7;
}

.filepond--root[data-style-panel-layout~=circle] {
  border-radius: 99999rem;
  overflow: hidden;
}

.filepond--root[data-style-panel-layout~=circle] > .filepond--panel {
  border-radius: inherit;
}

.filepond--root[data-style-panel-layout~=circle] > .filepond--panel > * {
  display: none;
}

.filepond--root[data-style-panel-layout~=circle] .filepond--file-info, .filepond--root[data-style-panel-layout~=circle] .filepond--file-status {
  display: none;
}

.filepond--root[data-style-panel-layout~=circle] .filepond--action-edit-item {
  opacity: 1 !important;
  visibility: visible !important;
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) and (stroke-color: transparent) {
    .filepond--root[data-style-panel-layout~=circle] {
      will-change: transform;
    }
  }
}
.filepond--panel-root {
  border-radius: 0.5em;
  background-color: #f1f0ef;
}

.filepond--panel {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  margin: 0;
  height: 100% !important;
  pointer-events: none;
}

.filepond-panel:not([data-scalable=false]) {
  height: auto !important;
}

.filepond--panel[data-scalable=false] > div {
  display: none;
}

.filepond--panel[data-scalable=true] {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  background-color: transparent !important;
  border: none !important;
}

.filepond--panel-bottom, .filepond--panel-center, .filepond--panel-top {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
}

.filepond--panel-bottom, .filepond--panel-top {
  height: 0.5em;
}

.filepond--panel-top {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-bottom: none !important;
}

.filepond--panel-top:after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 0;
  bottom: -1px;
  background-color: inherit;
}

.filepond--panel-bottom, .filepond--panel-center {
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: translate3d(0, 0.5em, 0);
  transform: translate3d(0, 0.5em, 0);
}

.filepond--panel-bottom {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  border-top: none !important;
}

.filepond--panel-bottom:before {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 0;
  top: -1px;
  background-color: inherit;
}

.filepond--panel-center {
  height: 100px !important;
  border-top: none !important;
  border-bottom: none !important;
  border-radius: 0 !important;
}

.filepond--panel-center:not([style]) {
  visibility: hidden;
}

.filepond--progress-indicator {
  position: static;
  width: 1.25em;
  height: 1.25em;
  color: #fff;
  margin: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.filepond--progress-indicator svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  transform-box: fill-box;
}

.filepond--progress-indicator path {
  fill: none;
  stroke: currentColor;
}

.filepond--list-scroller {
  z-index: 6;
}

.filepond--drop-label {
  z-index: 5;
}

.filepond--drip {
  z-index: 3;
}

.filepond--root > .filepond--panel {
  z-index: 2;
}

.filepond--browser {
  z-index: 1;
}

.filepond--root {
  box-sizing: border-box;
  position: relative;
  margin-bottom: 1em;
  font-size: 1rem;
  line-height: normal;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 450;
  text-align: left;
  text-rendering: optimizeLegibility;
  direction: ltr;
  contain: layout style size;
}

.filepond--root * {
  box-sizing: inherit;
  line-height: inherit;
}

.filepond--root :not(text) {
  font-size: inherit;
}

.filepond--root[data-disabled] {
  pointer-events: none;
}

.filepond--root[data-disabled] .filepond--list-scroller {
  pointer-events: all;
}

.filepond--root[data-disabled] .filepond--list {
  pointer-events: none;
}

.filepond--root .filepond--drop-label {
  min-height: 4.75em;
}

.filepond--root .filepond--list-scroller {
  margin-top: 1em;
  margin-bottom: 1em;
}

.filepond--root .filepond--credits {
  position: absolute;
  right: 0;
  opacity: 0.4;
  line-height: 0.85;
  font-size: 11px;
  color: inherit;
  text-decoration: none;
  z-index: 3;
  bottom: -14px;
}

.filepond--root .filepond--credits[style] {
  top: 0;
  bottom: auto;
  margin-top: 14px;
}
/*!********************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js!./node_modules/filepond-plugin-image-preview/dist/filepond-plugin-image-preview.css ***!
  \********************************************************************************************************************************************************************************************************/
/*!
 * FilePondPluginImagePreview 4.6.12
 * Licensed under MIT, https://opensource.org/licenses/MIT/
 * Please visit https://pqina.nl/filepond/ for details.
 */
/* eslint-disable */
.filepond--image-preview-markup {
  position: absolute;
  left: 0;
  top: 0;
}

.filepond--image-preview-wrapper {
  z-index: 2;
}

.filepond--image-preview-overlay {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 5rem;
  max-height: 7rem;
  margin: 0;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.filepond--image-preview-overlay svg {
  width: 100%;
  height: auto;
  color: inherit;
  max-height: inherit;
}

.filepond--image-preview-overlay-idle {
  mix-blend-mode: multiply;
  color: rgba(40, 40, 40, 0.85);
}

.filepond--image-preview-overlay-success {
  mix-blend-mode: normal;
  color: rgba(54, 151, 99, 1);
}

.filepond--image-preview-overlay-failure {
  mix-blend-mode: normal;
  color: rgba(196, 78, 71, 1);
}

/* disable for Safari as mix-blend-mode causes the overflow:hidden of the parent container to not work */
@supports (-webkit-marquee-repetition: infinite) and ((-o-object-fit: fill) or (object-fit: fill)) {
  .filepond--image-preview-overlay-idle {
    mix-blend-mode: normal;
  }
}
.filepond--image-preview-wrapper {
  /* no interaction */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* have preview fill up all available space */
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 100%;
  margin: 0;
  /* radius is .05em less to prevent the panel background color from shining through */
  border-radius: 0.45em;
  overflow: hidden;
  /* this seems to prevent Chrome from redrawing this layer constantly */
  background: rgba(0, 0, 0, 0.01);
}

.filepond--image-preview {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: flex; /* this aligns the graphic vertically if the panel is higher than the image */
  align-items: center;
  height: 100%;
  width: 100%;
  pointer-events: none;
  background: #222;
  /* will be animated */
  will-change: transform, opacity;
}

.filepond--image-clip {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  /* transparency indicator (currently only supports grid or basic color) */
}

.filepond--image-clip[data-transparency-indicator=grid] img,
.filepond--image-clip[data-transparency-indicator=grid] canvas {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg' fill='%23eee'%3E%3Cpath d='M0 0 H50 V50 H0'/%3E%3Cpath d='M50 50 H100 V100 H50'/%3E%3C/svg%3E");
  background-size: 1.25em 1.25em;
}

.filepond--image-bitmap,
.filepond--image-vector {
  position: absolute;
  left: 0;
  top: 0;
  will-change: transform;
}

.filepond--root[data-style-panel-layout~=integrated] .filepond--image-preview-wrapper {
  border-radius: 0;
}

.filepond--root[data-style-panel-layout~=integrated] .filepond--image-preview {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.filepond--root[data-style-panel-layout~=circle] .filepond--image-preview-wrapper {
  border-radius: 99999rem;
}

.filepond--root[data-style-panel-layout~=circle] .filepond--image-preview-overlay {
  top: auto;
  bottom: 0;
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}

.filepond--root[data-style-panel-layout~=circle] .filepond--file .filepond--file-action-button[data-align*=bottom]:not([data-align*=center]) {
  margin-bottom: 0.325em;
}

.filepond--root[data-style-panel-layout~=circle] .filepond--file [data-align*=left] {
  left: calc(50% - 3em);
}

.filepond--root[data-style-panel-layout~=circle] .filepond--file [data-align*=right] {
  right: calc(50% - 3em);
}

.filepond--root[data-style-panel-layout~=circle] .filepond--progress-indicator[data-align*=bottom][data-align*=left],
.filepond--root[data-style-panel-layout~=circle] .filepond--progress-indicator[data-align*=bottom][data-align*=right] {
  margin-bottom: 0.5125em;
}

.filepond--root[data-style-panel-layout~=circle] .filepond--progress-indicator[data-align*=bottom][data-align*=center] {
  margin-top: 0;
  margin-bottom: 0.1875em;
  margin-left: 0.1875em;
}
/*!**********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./assets/fonts/Montserrat/stylesheet.css ***!
  \**********************************************************************************************************************/
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Bold.eot');
    src: url('../fonts/Montserrat/Montserrat-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat/Montserrat-Bold.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-Bold.woff') format('woff'),
        url('../fonts/Montserrat/Montserrat-Bold.ttf') format('truetype'),
        url('../fonts/Montserrat/Montserrat-Bold.svg#Montserrat-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Black.eot');
    src: url('../fonts/Montserrat/Montserrat-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat/Montserrat-Black.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-Black.woff') format('woff'),
        url('../fonts/Montserrat/Montserrat-Black.ttf') format('truetype'),
        url('../fonts/Montserrat/Montserrat-Black.svg#Montserrat-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-BoldItalic.eot');
    src: url('../fonts/Montserrat/Montserrat-BoldItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat/Montserrat-BoldItalic.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-BoldItalic.woff') format('woff'),
        url('../fonts/Montserrat/Montserrat-BoldItalic.ttf') format('truetype'),
        url('../fonts/Montserrat/Montserrat-BoldItalic.svg#Montserrat-BoldItalic') format('svg');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-BlackItalic.eot');
    src: url('../fonts/Montserrat/Montserrat-BlackItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat/Montserrat-BlackItalic.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-BlackItalic.woff') format('woff'),
        url('../fonts/Montserrat/Montserrat-BlackItalic.ttf') format('truetype'),
        url('../fonts/Montserrat/Montserrat-BlackItalic.svg#Montserrat-BlackItalic') format('svg');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-ExtraBold.eot');
    src: url('../fonts/Montserrat/Montserrat-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat/Montserrat-ExtraBold.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-ExtraBold.woff') format('woff'),
        url('../fonts/Montserrat/Montserrat-ExtraBold.ttf') format('truetype'),
        url('../fonts/Montserrat/Montserrat-ExtraBold.svg#Montserrat-ExtraBold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-ExtraBoldItalic.eot');
    src: url('../fonts/Montserrat/Montserrat-ExtraBoldItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat/Montserrat-ExtraBoldItalic.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-ExtraBoldItalic.woff') format('woff'),
        url('../fonts/Montserrat/Montserrat-ExtraBoldItalic.ttf') format('truetype'),
        url('../fonts/Montserrat/Montserrat-ExtraBoldItalic.svg#Montserrat-ExtraBoldItalic') format('svg');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Italic.eot');
    src: url('../fonts/Montserrat/Montserrat-Italic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat/Montserrat-Italic.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-Italic.woff') format('woff'),
        url('../fonts/Montserrat/Montserrat-Italic.ttf') format('truetype'),
        url('../fonts/Montserrat/Montserrat-Italic.svg#Montserrat-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-ExtraLightItalic.eot');
    src: url('../fonts/Montserrat/Montserrat-ExtraLightItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat/Montserrat-ExtraLightItalic.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-ExtraLightItalic.woff') format('woff'),
        url('../fonts/Montserrat/Montserrat-ExtraLightItalic.ttf') format('truetype'),
        url('../fonts/Montserrat/Montserrat-ExtraLightItalic.svg#Montserrat-ExtraLightItalic') format('svg');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-ExtraLight.eot');
    src: url('../fonts/Montserrat/Montserrat-ExtraLight.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat/Montserrat-ExtraLight.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-ExtraLight.woff') format('woff'),
        url('../fonts/Montserrat/Montserrat-ExtraLight.ttf') format('truetype'),
        url('../fonts/Montserrat/Montserrat-ExtraLight.svg#Montserrat-ExtraLight') format('svg');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Light.eot');
    src: url('../fonts/Montserrat/Montserrat-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat/Montserrat-Light.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-Light.woff') format('woff'),
        url('../fonts/Montserrat/Montserrat-Light.ttf') format('truetype'),
        url('../fonts/Montserrat/Montserrat-Light.svg#Montserrat-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Medium.eot');
    src: url('../fonts/Montserrat/Montserrat-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat/Montserrat-Medium.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-Medium.woff') format('woff'),
        url('../fonts/Montserrat/Montserrat-Medium.ttf') format('truetype'),
        url('../fonts/Montserrat/Montserrat-Medium.svg#Montserrat-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Regular.eot');
    src: url('../fonts/Montserrat/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat/Montserrat-Regular.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-Regular.woff') format('woff'),
        url('../fonts/Montserrat/Montserrat-Regular.ttf') format('truetype'),
        url('../fonts/Montserrat/Montserrat-Regular.svg#Montserrat-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-LightItalic.eot');
    src: url('../fonts/Montserrat/Montserrat-LightItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat/Montserrat-LightItalic.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-LightItalic.woff') format('woff'),
        url('../fonts/Montserrat/Montserrat-LightItalic.ttf') format('truetype'),
        url('../fonts/Montserrat/Montserrat-LightItalic.svg#Montserrat-LightItalic') format('svg');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-SemiBold.eot');
    src: url('../fonts/Montserrat/Montserrat-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat/Montserrat-SemiBold.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-SemiBold.woff') format('woff'),
        url('../fonts/Montserrat/Montserrat-SemiBold.ttf') format('truetype'),
        url('../fonts/Montserrat/Montserrat-SemiBold.svg#Montserrat-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-MediumItalic.eot');
    src: url('../fonts/Montserrat/Montserrat-MediumItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat/Montserrat-MediumItalic.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-MediumItalic.woff') format('woff'),
        url('../fonts/Montserrat/Montserrat-MediumItalic.ttf') format('truetype'),
        url('../fonts/Montserrat/Montserrat-MediumItalic.svg#Montserrat-MediumItalic') format('svg');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-SemiBoldItalic.eot');
    src: url('../fonts/Montserrat/Montserrat-SemiBoldItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat/Montserrat-SemiBoldItalic.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-SemiBoldItalic.woff') format('woff'),
        url('../fonts/Montserrat/Montserrat-SemiBoldItalic.ttf') format('truetype'),
        url('../fonts/Montserrat/Montserrat-SemiBoldItalic.svg#Montserrat-SemiBoldItalic') format('svg');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-ThinItalic.eot');
    src: url('../fonts/Montserrat/Montserrat-ThinItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat/Montserrat-ThinItalic.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-ThinItalic.woff') format('woff'),
        url('../fonts/Montserrat/Montserrat-ThinItalic.ttf') format('truetype'),
        url('../fonts/Montserrat/Montserrat-ThinItalic.svg#Montserrat-ThinItalic') format('svg');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Thin.eot');
    src: url('../fonts/Montserrat/Montserrat-Thin.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat/Montserrat-Thin.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-Thin.woff') format('woff'),
        url('../fonts/Montserrat/Montserrat-Thin.ttf') format('truetype'),
        url('../fonts/Montserrat/Montserrat-Thin.svg#Montserrat-Thin') format('svg');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}


/*!********************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js!./assets/scss/main.scss ***!
  \********************************************************************************************************************************************/
@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
}

/*COlORS*/
.xdsoft_datetimepicker {
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.506);
  background: #fff;
  border-bottom: 1px solid #bbb;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  color: #333;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 8px;
  padding-left: 0;
  padding-top: 2px;
  position: absolute;
  z-index: 9999;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
}

.xdsoft_datetimepicker.xdsoft_rtl {
  padding: 8px 0 8px 8px;
}

.xdsoft_datetimepicker iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 75px;
  height: 210px;
  background: transparent;
  border: 0;
}

.xdsoft_datetimepicker button {
  border: none !important;
}

.xdsoft_noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.xdsoft_noselect::selection {
  background: transparent;
}

.xdsoft_noselect::-moz-selection {
  background: transparent;
}

.xdsoft_datetimepicker.xdsoft_inline {
  display: inline-block;
  position: static;
  box-shadow: none;
}

.xdsoft_datetimepicker * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.xdsoft_datetimepicker .xdsoft_datepicker, .xdsoft_datetimepicker .xdsoft_timepicker {
  display: none;
}

.xdsoft_datetimepicker .xdsoft_datepicker.active, .xdsoft_datetimepicker .xdsoft_timepicker.active {
  display: block;
}

.xdsoft_datetimepicker .xdsoft_datepicker {
  width: 224px;
  float: left;
  margin-left: 8px;
}

.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_datepicker {
  float: right;
  margin-right: 8px;
  margin-left: 0;
}

.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_datepicker {
  width: 256px;
}

.xdsoft_datetimepicker .xdsoft_timepicker {
  width: 58px;
  float: left;
  text-align: center;
  margin-left: 8px;
  margin-top: 0;
}

.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker {
  float: right;
  margin-right: 8px;
  margin-left: 0;
}

.xdsoft_datetimepicker .xdsoft_datepicker.active + .xdsoft_timepicker {
  margin-top: 8px;
  margin-bottom: 3px;
}

.xdsoft_datetimepicker .xdsoft_monthpicker {
  position: relative;
  text-align: center;
}

.xdsoft_datetimepicker .xdsoft_label i, .xdsoft_datetimepicker .xdsoft_prev, .xdsoft_datetimepicker .xdsoft_next, .xdsoft_datetimepicker .xdsoft_today_button {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Q0NBRjI1NjM0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Q0NBRjI1NjQ0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDQ0FGMjU2MTQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDQ0FGMjU2MjQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PoNEP54AAAIOSURBVHja7Jq9TsMwEMcxrZD4WpBYeKUCe+kTMCACHZh4BFfHO/AAIHZGFhYkBBsSEqxsLCAgXKhbXYOTxh9pfJVP+qutnZ5s/5Lz2Y5I03QhWji2GIcgAokWgfCxNvcOCCGKqiSqhUp0laHOne05vdEyGMfkdxJDVjgwDlEQgYQBgx+ULJaWSXXS6r/ER5FBVR8VfGftTKcITNs+a1XpcFoExREIDF14AVIFxgQUS+h520cdud6wNkC0UBw6BCO/HoCYwBhD8QCkQ/x1mwDyD4plh4D6DDV0TAGyo4HcawLIBBSLDkHeH0Mg2yVP3l4TQMZQDDsEOl/MgHQqhMNuE0D+oBh0CIr8MAKyazBH9WyBuKxDWgbXfjNf32TZ1KWm/Ap1oSk/R53UtQ5xTh3LUlMmT8gt6g51Q9p+SobxgJQ/qmsfZhWywGFSl0yBjCLJCMgXail3b7+rumdVJ2YRss4cN+r6qAHDkPWjPjdJCF4n9RmAD/V9A/Wp4NQassDjwlB6XBiCxcJQWmZZb8THFilfy/lfrTvLghq2TqTHrRMTKNJ0sIhdo15RT+RpyWwFdY96UZ/LdQKBGjcXpcc1AlSFEfLmouD+1knuxBDUVrvOBmoOC/rEcN7OQxKVeJTCiAdUzUJhA2Oez9QTkp72OTVcxDcXY8iKNkxGAJXmJCOQwOa6dhyXsOa6XwEGAKdeb5ET3rQdAAAAAElFTkSuQmCC);
}

.xdsoft_datetimepicker .xdsoft_label i {
  opacity: 0.5;
  background-position: -92px -19px;
  display: inline-block;
  width: 9px;
  height: 20px;
  vertical-align: middle;
}

.xdsoft_datetimepicker .xdsoft_prev {
  float: left;
  background-position: -20px 0;
}

.xdsoft_datetimepicker .xdsoft_today_button {
  float: left;
  background-position: -70px 0;
  margin-left: 5px;
}

.xdsoft_datetimepicker .xdsoft_next {
  float: right;
  background-position: 0 0;
}

.xdsoft_datetimepicker .xdsoft_next, .xdsoft_datetimepicker .xdsoft_prev, .xdsoft_datetimepicker .xdsoft_today_button {
  background-color: transparent;
  background-repeat: no-repeat;
  border: 0 none;
  cursor: pointer;
  display: block;
  height: 30px;
  opacity: 0.5;
  -ms-filter: "alpha(opacity=50)";
  outline: medium none;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  width: 20px;
  min-width: 0;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev, .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next {
  float: none;
  background-position: -40px -15px;
  height: 15px;
  width: 30px;
  display: block;
  margin-left: 14px;
  margin-top: 7px;
}

.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker .xdsoft_prev, .xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker .xdsoft_next {
  float: none;
  margin-left: 0;
  margin-right: 14px;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev {
  background-position: -40px 0;
  margin-bottom: 7px;
  margin-top: 0;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box {
  height: 151px;
  overflow: hidden;
  border-bottom: 1px solid #ddd;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div {
  background: #f5f5f5;
  border-top: 1px solid #ddd;
  color: #666;
  font-size: 12px;
  text-align: center;
  border-collapse: collapse;
  cursor: pointer;
  border-bottom-width: 0;
  height: 25px;
  line-height: 25px;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:first-child {
  border-top-width: 0;
}

.xdsoft_datetimepicker .xdsoft_today_button:hover, .xdsoft_datetimepicker .xdsoft_next:hover, .xdsoft_datetimepicker .xdsoft_prev:hover {
  opacity: 1;
  -ms-filter: "alpha(opacity=100)";
}

.xdsoft_datetimepicker .xdsoft_label {
  display: inline;
  position: relative;
  z-index: 9999;
  margin: 0;
  padding: 5px 3px;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  background-color: #fff;
  float: left;
  width: 182px;
  text-align: center;
  cursor: pointer;
}

.xdsoft_datetimepicker .xdsoft_label:hover > span {
  text-decoration: underline;
}

.xdsoft_datetimepicker .xdsoft_label:hover i {
  opacity: 1;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select {
  border: 1px solid #ccc;
  position: absolute;
  right: 0;
  top: 30px;
  z-index: 101;
  display: none;
  background: #fff;
  max-height: 160px;
  overflow-y: hidden;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_monthselect {
  right: -7px;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_yearselect {
  right: 2px;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover {
  color: #fff;
  background: #ff8000;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option {
  padding: 2px 10px 2px 5px;
  text-decoration: none !important;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current {
  background: #3af;
  box-shadow: #178fe5 0 1px 3px 0 inset;
  color: #fff;
  font-weight: 700;
}

.xdsoft_datetimepicker .xdsoft_month {
  width: 100px;
  text-align: right;
}

.xdsoft_datetimepicker .xdsoft_calendar {
  clear: both;
}

.xdsoft_datetimepicker .xdsoft_year {
  width: 48px;
  margin-left: 5px;
}

.xdsoft_datetimepicker .xdsoft_calendar table {
  border-collapse: collapse;
  width: 100%;
}

.xdsoft_datetimepicker .xdsoft_calendar td > div {
  padding-right: 5px;
}

.xdsoft_datetimepicker .xdsoft_calendar th {
  height: 25px;
}

.xdsoft_datetimepicker .xdsoft_calendar td, .xdsoft_datetimepicker .xdsoft_calendar th {
  width: 14.2857142%;
  background: #f5f5f5;
  border: 1px solid #ddd;
  color: #666;
  font-size: 12px;
  text-align: right;
  vertical-align: middle;
  padding: 0;
  border-collapse: collapse;
  cursor: pointer;
  height: 25px;
}

.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar td, .xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar th {
  width: 12.5%;
}

.xdsoft_datetimepicker .xdsoft_calendar th {
  background: #f1f1f1;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today {
  color: #3af;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_highlighted_default {
  background: #ffe9d2;
  box-shadow: #ffb871 0 1px 4px 0 inset;
  color: #000;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_highlighted_mint {
  background: #c1ffc9;
  box-shadow: #00dd1c 0 1px 4px 0 inset;
  color: #000;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default, .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current, .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  background: #3af;
  box-shadow: #178fe5 0 1px 3px 0 inset;
  color: #fff;
  font-weight: 700;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month, .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled, .xdsoft_datetimepicker .xdsoft_time_box > div > div.xdsoft_disabled {
  opacity: 0.5;
  -ms-filter: "alpha(opacity=50)";
  cursor: default;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month.xdsoft_disabled {
  opacity: 0.2;
  -ms-filter: "alpha(opacity=20)";
}

.xdsoft_datetimepicker .xdsoft_calendar td:hover, .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #fff !important;
  background: #ff8000 !important;
  box-shadow: none !important;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current.xdsoft_disabled:hover, .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current.xdsoft_disabled:hover {
  background: #3af !important;
  box-shadow: #178fe5 0 1px 3px 0 inset !important;
  color: #fff !important;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled:hover, .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_disabled:hover {
  color: inherit !important;
  background: inherit !important;
  box-shadow: inherit !important;
}

.xdsoft_datetimepicker .xdsoft_calendar th {
  font-weight: 700;
  text-align: center;
  color: #999;
  cursor: default;
}

.xdsoft_datetimepicker .xdsoft_copyright {
  color: #ccc !important;
  font-size: 10px;
  clear: both;
  float: none;
  margin-left: 8px;
}

.xdsoft_datetimepicker .xdsoft_copyright a {
  color: #eee !important;
}

.xdsoft_datetimepicker .xdsoft_copyright a:hover {
  color: #aaa !important;
}

.xdsoft_time_box {
  position: relative;
  border: 1px solid #ccc;
}

.xdsoft_scrollbar > .xdsoft_scroller {
  background: #ccc !important;
  height: 20px;
  border-radius: 3px;
}

.xdsoft_scrollbar {
  position: absolute;
  width: 7px;
  right: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
}

.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_scrollbar {
  left: 0;
  right: auto;
}

.xdsoft_scroller_box {
  position: relative;
}

.xdsoft_datetimepicker.xdsoft_dark {
  box-shadow: 0 5px 15px -5px rgba(255, 255, 255, 0.506);
  background: #000;
  border-bottom: 1px solid #444;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
  border-top: 1px solid #333;
  color: #ccc;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box {
  border-bottom: 1px solid #222;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box > div > div {
  background: #0a0a0a;
  border-top: 1px solid #222;
  color: #999;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label {
  background-color: #000;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select {
  border: 1px solid #333;
  background: #000;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover {
  color: #000;
  background: #007fff;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current {
  background: #c50;
  box-shadow: #b03e00 0 1px 3px 0 inset;
  color: #000;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label i, .xdsoft_datetimepicker.xdsoft_dark .xdsoft_prev, .xdsoft_datetimepicker.xdsoft_dark .xdsoft_next, .xdsoft_datetimepicker.xdsoft_dark .xdsoft_today_button {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QUExQUUzOTA0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QUExQUUzOTE0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBQTFBRTM4RTQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBQTFBRTM4RjQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pp0VxGEAAAIASURBVHja7JrNSgMxEMebtgh+3MSLr1T1Xn2CHoSKB08+QmR8Bx9A8e7RixdB9CKCoNdexIugxFlJa7rNZneTbLIpM/CnNLsdMvNjM8l0mRCiQ9Ye61IKCAgZAUnH+mU3MMZaHYChBnJUDzWOFZdVfc5+ZFLbrWDeXPwbxIqrLLfaeS0hEBVGIRQCEiZoHQwtlGSByCCdYBl8g8egTTAWoKQMRBRBcZxYlhzhKegqMOageErsCHVkk3hXIFooDgHB1KkHIHVgzKB4ADJQ/A1jAFmAYhkQqA5TOBtocrKrgXwQA8gcFIuAIO8sQSA7hidvPwaQGZSaAYHOUWJABhWWw2EMIH9QagQERU4SArJXo0ZZL18uvaxejXt/Em8xjVBXmvFr1KVm/AJ10tRe2XnraNqaJvKE3KHuUbfK1E+VHB0q40/y3sdQSxY4FHWeKJCunP8UyDdqJZenT3ntVV5jIYCAh20vT7ioP8tpf6E2lfEMwERe+whV1MHjwZB7PBiCxcGQWwKZKD62lfGNnP/1poFAA60T7rF1UgcKd2id3KDeUS+oLWV8DfWAepOfq00CgQabi9zjcgJVYVD7PVzQUAUGAQkbNJTBICDhgwYTjDYD6XeW08ZKh+A4pYkzenOxXUbvZcWz7E8ykRMnIHGX1XPl+1m2vPYpL+2qdb8CDAARlKFEz/ZVkAAAAABJRU5ErkJggg==);
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td, .xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th {
  background: #0a0a0a;
  border: 1px solid #222;
  color: #999;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th {
  background: #0e0e0e;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_today {
  color: #c50;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_highlighted_default {
  background: #ffe9d2;
  box-shadow: #ffb871 0 1px 4px 0 inset;
  color: #000;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_highlighted_mint {
  background: #c1ffc9;
  box-shadow: #00dd1c 0 1px 4px 0 inset;
  color: #000;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_default, .xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_current, .xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  background: #c50;
  box-shadow: #b03e00 0 1px 3px 0 inset;
  color: #000;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td:hover, .xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000 !important;
  background: #007fff !important;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th {
  color: #666;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright {
  color: #333 !important;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a {
  color: #111 !important;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a:hover {
  color: #555 !important;
}

.xdsoft_dark .xdsoft_time_box {
  border: 1px solid #333;
}

.xdsoft_dark .xdsoft_scrollbar > .xdsoft_scroller {
  background: #333 !important;
}

.xdsoft_datetimepicker .xdsoft_save_selected {
  display: block;
  border: 1px solid #ddd !important;
  margin-top: 5px;
  width: 100%;
  color: #454551;
  font-size: 13px;
}

.xdsoft_datetimepicker .blue-gradient-button {
  font-family: "museo-sans", "Book Antiqua", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #82878c;
  height: 28px;
  position: relative;
  padding: 4px 17px 4px 33px;
  border: 1px solid #d7d8da;
  background: -moz-linear-gradient(top, #fff 0, #f4f8fa 73%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(73%, #f4f8fa));
  background: -webkit-linear-gradient(top, #fff 0, #f4f8fa 73%);
  background: -o-linear-gradient(top, #fff 0, #f4f8fa 73%);
  background: -ms-linear-gradient(top, #fff 0, #f4f8fa 73%);
  background: linear-gradient(to bottom, #fff 0, #f4f8fa 73%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fff",endColorstr="#f4f8fa",GradientType=0);
}

.xdsoft_datetimepicker .blue-gradient-button:hover, .xdsoft_datetimepicker .blue-gradient-button:focus, .xdsoft_datetimepicker .blue-gradient-button:hover span, .xdsoft_datetimepicker .blue-gradient-button:focus span {
  color: #454551;
  background: -moz-linear-gradient(top, #f4f8fa 0, #FFF 73%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f4f8fa), color-stop(73%, #FFF));
  background: -webkit-linear-gradient(top, #f4f8fa 0, #FFF 73%);
  background: -o-linear-gradient(top, #f4f8fa 0, #FFF 73%);
  background: -ms-linear-gradient(top, #f4f8fa 0, #FFF 73%);
  background: linear-gradient(to bottom, #f4f8fa 0, #FFF 73%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f4f8fa",endColorstr="#FFF",GradientType=0);
}

html {
  height: 100%;
  min-height: 100%;
}

button {
  border: none;
}

body {
  font-family: "Montserrat", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  position: relative;
}

body {
  padding-top: 77px;
}

.woocommerce-notices-wrapper {
  margin: 0 0 16px;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  list-style: none;
  margin: 0 0 12px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.45;
  border: 1px solid transparent;
  box-shadow: 0 4px 16px rgba(20, 26, 33, 0.08);
}

.woocommerce-message {
  color: #1e5f2a;
  background: #ecf9ef;
  border-color: #b7ebc0;
}

.woocommerce-info {
  color: #23457a;
  background: #eef4ff;
  border-color: #c6d8ff;
}

.woocommerce-error {
  color: #7a1f1f;
  background: #fff1f1;
  border-color: #ffcaca;
}

html.theme-dark .woocommerce-message {
  color: #d6f6dd;
  background: #1e3525;
  border-color: #2e5a3a;
}
html.theme-dark .woocommerce-info {
  color: #d3e6ff;
  background: #1f2f49;
  border-color: #35527f;
}
html.theme-dark .woocommerce-error {
  color: #ffd4d4;
  background: #4a2525;
  border-color: #7a3838;
}

body.woocommerce-account .woocommerce {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 48px;
}
@media (min-width: 900px) {
  body.woocommerce-account .woocommerce {
    flex-direction: row;
    align-items: flex-start;
    gap: 28px;
  }
}
body.woocommerce-account .woocommerce-MyAccount-navigation {
  flex-shrink: 0;
  width: 100%;
}
@media (min-width: 900px) {
  body.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 240px;
    max-width: 240px;
  }
}
body.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
@media (min-width: 900px) {
  body.woocommerce-account .woocommerce-MyAccount-navigation ul {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 4px;
    padding: 16px;
    background: #fff;
    border: 1px solid #eceaf8;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(18, 23, 38, 0.06);
  }
}
body.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin: 0;
}
body.woocommerce-account .woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #2C3E50;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  line-height: 1.3;
  white-space: nowrap;
}
@media (max-width: 899px) {
  body.woocommerce-account .woocommerce-MyAccount-navigation li a {
    background: rgba(140, 83, 255, 0.08);
    border-color: rgba(140, 83, 255, 0.12);
  }
}
body.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
  background: rgba(140, 83, 255, 0.1);
  color: #6c40c4;
}
body.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
  background: linear-gradient(135deg, rgba(140, 83, 255, 0.18) 0%, rgba(108, 64, 196, 0.12) 100%);
  color: #6c40c4;
  border-color: rgba(140, 83, 255, 0.35);
}
body.woocommerce-account .woocommerce-MyAccount-content {
  flex: 1;
  min-width: 0;
  padding: 22px 22px 26px;
  background: #fff;
  border: 1px solid #eceaf8;
  border-radius: 16px;
  box-shadow: 0 10px 32px rgba(18, 23, 38, 0.07);
  font-size: 14px;
  line-height: 1.55;
  color: #26252e;
}
@media (max-width: 640px) {
  body.woocommerce-account .woocommerce-MyAccount-content {
    padding: 16px 14px 20px;
  }
}
body.woocommerce-account .woocommerce-MyAccount-content > :first-child {
  margin-top: 0;
}
body.woocommerce-account .woocommerce-MyAccount-content h2,
body.woocommerce-account .woocommerce-MyAccount-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #2C3E50;
  margin: 0 0 16px;
  line-height: 1.35;
}
body.woocommerce-account .woocommerce-MyAccount-content h3 {
  font-size: 16px;
  margin-top: 28px;
}
body.woocommerce-account .woocommerce-MyAccount-content p {
  margin: 0 0 14px;
}
body.woocommerce-account .woocommerce-MyAccount-content a:not(.button):not(.woocommerce-button):not(.woocommerce-Button) {
  color: #8c53ff;
  font-weight: 600;
  text-decoration: none;
}
body.woocommerce-account .woocommerce-MyAccount-content a:not(.button):not(.woocommerce-button):not(.woocommerce-Button):hover {
  text-decoration: underline;
  color: #6c40c4;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-error {
  margin-bottom: 16px;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses,
body.woocommerce-account .woocommerce-MyAccount-content .u-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .u-column1,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .u-column2,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .col-1,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .col-2,
body.woocommerce-account .woocommerce-MyAccount-content .u-columns .u-column1,
body.woocommerce-account .woocommerce-MyAccount-content .u-columns .u-column2,
body.woocommerce-account .woocommerce-MyAccount-content .u-columns .col-1,
body.woocommerce-account .woocommerce-MyAccount-content .u-columns .col-2 {
  flex: 1 1 240px;
  min-width: 0;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title.title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(140, 83, 255, 0.1) 0%, rgba(140, 83, 255, 0.03) 100%);
  border: 1px solid rgba(140, 83, 255, 0.22);
  border-radius: 12px;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title.title h2,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title.title h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: #2C3E50;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses.col2-set.addresses,
body.woocommerce-account .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses {
  width: 100%;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address {
  min-width: 0;
}
body.woocommerce-account .woocommerce-MyAccount-content address {
  font-style: normal;
  padding: 14px 16px;
  background: #f8f7ff;
  border: 1px solid #eceaf8;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #26252e;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title .edit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: #6c40c4;
  background: #fff;
  border: 1px solid rgba(140, 83, 255, 0.35);
  border-radius: 999px;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title .edit:hover {
  background: rgba(140, 83, 255, 0.12);
  border-color: #8c53ff;
  color: #6c40c4;
  text-decoration: none;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields {
  margin-top: 4px;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 20px;
  width: 100%;
  clear: both;
}
@media (min-width: 640px) {
  body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper::before, body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper::after {
  display: none;
  content: none;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .form-row {
  float: none;
  width: 100% !important;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .form-row-wide {
  grid-column: 1/-1;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields .form-row input.input-text,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields .form-row textarea,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields .form-row select {
  max-width: none;
  width: 100%;
  box-sizing: border-box;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields .select2-container {
  width: 100% !important;
  max-width: 100%;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields .select2-container .select2-selection--single {
  min-height: 46px;
  padding: 6px 12px;
  border: 1px solid #d7d5e8;
  border-radius: 10px;
  display: flex;
  align-items: center;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1.35;
  padding-left: 0;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 44px;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields > p:last-of-type {
  margin-top: 24px;
  margin-bottom: 0;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-MyAccount-content > form[method=post]:has(.woocommerce-address-fields) > h2:first-of-type {
  margin-top: 0;
  margin-bottom: 18px;
}
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table,
body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-table--order-details,
body.woocommerce-account .woocommerce-MyAccount-content table.order_details,
body.woocommerce-account .woocommerce-MyAccount-content table.my_account_subscriptions,
body.woocommerce-account .woocommerce-MyAccount-content table.subscription_details {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
  font-size: 14px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eceaf8;
}
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table thead th,
body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-table--order-details thead th,
body.woocommerce-account .woocommerce-MyAccount-content table.order_details thead th,
body.woocommerce-account .woocommerce-MyAccount-content table.my_account_subscriptions thead th,
body.woocommerce-account .woocommerce-MyAccount-content table.subscription_details thead th {
  text-align: left;
  padding: 12px 14px;
  background: #f3f1ff;
  color: #2C3E50;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #eceaf8;
}
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody td,
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody th,
body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-table--order-details tbody td,
body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-table--order-details tbody th,
body.woocommerce-account .woocommerce-MyAccount-content table.order_details tbody td,
body.woocommerce-account .woocommerce-MyAccount-content table.order_details tbody th,
body.woocommerce-account .woocommerce-MyAccount-content table.my_account_subscriptions tbody td,
body.woocommerce-account .woocommerce-MyAccount-content table.my_account_subscriptions tbody th,
body.woocommerce-account .woocommerce-MyAccount-content table.subscription_details tbody td,
body.woocommerce-account .woocommerce-MyAccount-content table.subscription_details tbody th {
  padding: 12px 14px;
  border-bottom: 1px solid #f0eef8;
  vertical-align: top;
}
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody tr:last-child td,
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody tr:last-child th,
body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-table--order-details tbody tr:last-child td,
body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-table--order-details tbody tr:last-child th,
body.woocommerce-account .woocommerce-MyAccount-content table.order_details tbody tr:last-child td,
body.woocommerce-account .woocommerce-MyAccount-content table.order_details tbody tr:last-child th,
body.woocommerce-account .woocommerce-MyAccount-content table.my_account_subscriptions tbody tr:last-child td,
body.woocommerce-account .woocommerce-MyAccount-content table.my_account_subscriptions tbody tr:last-child th,
body.woocommerce-account .woocommerce-MyAccount-content table.subscription_details tbody tr:last-child td,
body.woocommerce-account .woocommerce-MyAccount-content table.subscription_details tbody tr:last-child th {
  border-bottom: none;
}
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tfoot th,
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tfoot td,
body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-table--order-details tfoot th,
body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-table--order-details tfoot td,
body.woocommerce-account .woocommerce-MyAccount-content table.order_details tfoot th,
body.woocommerce-account .woocommerce-MyAccount-content table.order_details tfoot td,
body.woocommerce-account .woocommerce-MyAccount-content table.my_account_subscriptions tfoot th,
body.woocommerce-account .woocommerce-MyAccount-content table.my_account_subscriptions tfoot td,
body.woocommerce-account .woocommerce-MyAccount-content table.subscription_details tfoot th,
body.woocommerce-account .woocommerce-MyAccount-content table.subscription_details tfoot td {
  padding: 10px 14px;
  border-top: 1px solid #eceaf8;
  background: #faf9ff;
}
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table .woocommerce-orders-table__cell-order-actions a,
body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-table--order-details .woocommerce-orders-table__cell-order-actions a,
body.woocommerce-account .woocommerce-MyAccount-content table.order_details .woocommerce-orders-table__cell-order-actions a,
body.woocommerce-account .woocommerce-MyAccount-content table.my_account_subscriptions .woocommerce-orders-table__cell-order-actions a,
body.woocommerce-account .woocommerce-MyAccount-content table.subscription_details .woocommerce-orders-table__cell-order-actions a {
  margin-right: 8px;
  margin-bottom: 4px;
  display: inline-block;
}
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table td.membership-actions.order-actions,
body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-table--order-details td.membership-actions.order-actions,
body.woocommerce-account .woocommerce-MyAccount-content table.order_details td.membership-actions.order-actions,
body.woocommerce-account .woocommerce-MyAccount-content table.my_account_subscriptions td.membership-actions.order-actions,
body.woocommerce-account .woocommerce-MyAccount-content table.subscription_details td.membership-actions.order-actions {
  vertical-align: top;
  white-space: normal;
  max-width: 260px;
  width: 22%;
  line-height: 1.4;
}
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table td.membership-actions.order-actions a.button,
body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-table--order-details td.membership-actions.order-actions a.button,
body.woocommerce-account .woocommerce-MyAccount-content table.order_details td.membership-actions.order-actions a.button,
body.woocommerce-account .woocommerce-MyAccount-content table.my_account_subscriptions td.membership-actions.order-actions a.button,
body.woocommerce-account .woocommerce-MyAccount-content table.subscription_details td.membership-actions.order-actions a.button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 8px 8px 0 !important;
  padding: 6px 12px !important;
  min-height: 0;
  font-size: 11px !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  letter-spacing: 0.02em;
  text-transform: none;
  border-radius: 999px !important;
  border-bottom-width: 2px !important;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  text-align: center;
  word-break: break-word;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__row--status {
  font-weight: 600;
}
@media (max-width: 768px) {
  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table_responsive,
  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table {
    border-radius: 12px;
  }
  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table_responsive tr,
  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tr {
    margin-bottom: 12px;
    padding: 12px;
    border: 1px solid #eceaf8;
    border-radius: 12px;
    display: block;
    background: #faf9ff;
  }
  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table_responsive td,
  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    text-align: right !important;
    padding: 8px 0 !important;
    border: none !important;
  }
  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table_responsive td::before,
  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table td::before {
    content: attr(data-title);
    float: none;
    font-weight: 700;
    text-align: left;
    color: #6b6a76;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table_responsive thead,
  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table thead {
    display: none;
  }
  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table_responsive td.membership-actions.order-actions,
  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table td.membership-actions.order-actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    max-width: none;
  }
  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table_responsive td.membership-actions.order-actions::before,
  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table td.membership-actions.order-actions::before {
    display: none;
  }
  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table_responsive td.membership-actions.order-actions a.button,
  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table td.membership-actions.order-actions a.button {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
  }
}
body.woocommerce-account .woocommerce-MyAccount-content fieldset {
  border: 1px solid #eceaf8;
  border-radius: 12px;
  padding: 18px 18px 8px;
  margin: 0 0 22px;
  background: #faf9ff;
}
body.woocommerce-account .woocommerce-MyAccount-content fieldset legend {
  padding: 0 8px;
  font-weight: 700;
  color: #2C3E50;
  font-size: 15px;
}
body.woocommerce-account .woocommerce-MyAccount-content .form-row {
  margin: 0 0 16px;
}
body.woocommerce-account .woocommerce-MyAccount-content .form-row label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: #2C3E50;
  margin: 0 0 6px;
}
body.woocommerce-account .woocommerce-MyAccount-content .form-row input.input-text,
body.woocommerce-account .woocommerce-MyAccount-content .form-row textarea,
body.woocommerce-account .woocommerce-MyAccount-content .form-row select {
  width: 100%;
  max-width: 520px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: Montserrat, sans-serif;
  border: 1px solid #d7d5e8;
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
body.woocommerce-account .woocommerce-MyAccount-content .form-row input.input-text:focus,
body.woocommerce-account .woocommerce-MyAccount-content .form-row textarea:focus,
body.woocommerce-account .woocommerce-MyAccount-content .form-row select:focus {
  outline: none;
  border-color: #8c53ff;
  box-shadow: 0 0 0 3px rgba(140, 83, 255, 0.15);
}
body.woocommerce-account .woocommerce-MyAccount-content .form-row textarea {
  min-height: 100px;
  resize: vertical;
}
body.woocommerce-account .woocommerce-MyAccount-content .form-row-wide {
  max-width: 100%;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  cursor: pointer;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-form__label-for-checkbox input[type=checkbox] {
  width: auto;
  accent-color: #8c53ff;
}
body.woocommerce-account .woocommerce-MyAccount-content button.button,
body.woocommerce-account .woocommerce-MyAccount-content .button,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Button,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 25px !important;
  border: none !important;
  border-bottom: 4px solid #6c40c4 !important;
  background: #8c53ff !important;
  color: #fff !important;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  text-decoration: none !important;
  line-height: 1.2;
  font-family: Montserrat, sans-serif !important;
}
body.woocommerce-account .woocommerce-MyAccount-content button.button:hover,
body.woocommerce-account .woocommerce-MyAccount-content .button:hover,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Button:hover,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-button:hover {
  background: #7746d8 !important;
  color: #fff !important;
}
body.woocommerce-account .woocommerce-MyAccount-content button.button:disabled, body.woocommerce-account .woocommerce-MyAccount-content button.button:disabled:hover,
body.woocommerce-account .woocommerce-MyAccount-content .button:disabled,
body.woocommerce-account .woocommerce-MyAccount-content .button:disabled:hover,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Button:disabled,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Button:disabled:hover,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-button:disabled,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-button:disabled:hover {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}
body.woocommerce-account .woocommerce-MyAccount-content button.button.alt,
body.woocommerce-account .woocommerce-MyAccount-content .button.alt {
  background: #4cd964 !important;
  border-bottom-color: #369a46 !important;
}
body.woocommerce-account .woocommerce-MyAccount-content button.button.alt:hover,
body.woocommerce-account .woocommerce-MyAccount-content .button.alt:hover {
  background: #44c45a !important;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-pagination {
  margin: 20px 0 0;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-pagination ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-pagination li a,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-pagination li span {
  display: inline-flex;
  min-width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #eceaf8;
  background: #fff;
  color: #2C3E50;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-pagination li a:hover {
  border-color: #8c53ff;
  color: #8c53ff;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-pagination li span.current {
  background: #8c53ff;
  color: #fff;
  border-color: #8c53ff;
}
body.woocommerce-account .woocommerce-MyAccount-content .subscription_details {
  margin-bottom: 16px;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-PaymentMethods,
body.woocommerce-account .woocommerce-MyAccount-content ul.payment_methods {
  list-style: none;
  margin: 0;
  padding: 0;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-PaymentMethods li,
body.woocommerce-account .woocommerce-MyAccount-content ul.payment_methods li {
  padding: 14px 16px;
  margin: 0 0 10px;
  border: 1px solid #eceaf8;
  border-radius: 12px;
  background: #faf9ff;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-order-downloads {
  margin-top: 20px;
}
body.woocommerce-account .woocommerce-MyAccount-content dl.variation {
  margin: 6px 0 0;
  font-size: 13px;
  color: #6b6a76;
}
body.woocommerce-account .woocommerce-MyAccount-content dl.variation dt {
  font-weight: 700;
  display: inline;
}
body.woocommerce-account .woocommerce-MyAccount-content dl.variation dd {
  display: inline;
  margin: 0 0 0 4px;
}
body.woocommerce-account .woocommerce-MyAccount-content .order-again {
  margin-top: 16px;
}
body.woocommerce-account .woocommerce-MyAccount-content .u-column1 h2,
body.woocommerce-account .woocommerce-MyAccount-content .u-column2 h2 {
  margin-top: 0;
}
body.woocommerce-account .cabinet_main_area .woocommerce {
  margin-top: 0;
}

@media (min-width: 900px) {
  html.theme-dark body.woocommerce-account .woocommerce-MyAccount-navigation ul {
    background: #14141a;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  }
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-navigation li a {
  color: #e8e8f0;
}
@media (max-width: 899px) {
  html.theme-dark body.woocommerce-account .woocommerce-MyAccount-navigation li a {
    background: rgba(184, 160, 255, 0.12);
    border-color: rgba(184, 160, 255, 0.2);
  }
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
  background: rgba(184, 160, 255, 0.16);
  color: #fff;
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
  background: rgba(184, 160, 255, 0.22);
  color: #fff;
  border-color: rgba(184, 160, 255, 0.4);
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content {
  background: #14141a;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  color: #e8e8f0;
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content h2,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content h3 {
  color: #fff;
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content address {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: #e8e8f0;
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title.title {
  background: rgba(184, 160, 255, 0.1);
  border-color: rgba(184, 160, 255, 0.28);
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title.title h2,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title.title h3 {
  color: #fff;
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title .edit {
  color: #e8e8f0;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(184, 160, 255, 0.4);
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title .edit:hover {
  background: rgba(184, 160, 255, 0.18);
  border-color: #b8a0ff;
  color: #fff;
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.shop_table,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-table--order-details,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.order_details,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.my_account_subscriptions,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.subscription_details,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table {
  border-color: rgba(255, 255, 255, 0.1);
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.shop_table thead th,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-table--order-details thead th,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.order_details thead th,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.my_account_subscriptions thead th,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.subscription_details thead th,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table thead th {
  background: rgba(184, 160, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody td,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody th,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-table--order-details tbody td,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-table--order-details tbody th,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.order_details tbody td,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.order_details tbody th,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.my_account_subscriptions tbody td,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.my_account_subscriptions tbody th,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.subscription_details tbody td,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.subscription_details tbody th,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table tbody td,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table tbody th {
  border-color: rgba(255, 255, 255, 0.08);
  color: #e8e8f0;
  background: transparent;
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody tr:nth-child(even) td,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody tr:nth-child(even) th,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-table--order-details tbody tr:nth-child(even) td,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-table--order-details tbody tr:nth-child(even) th,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.order_details tbody tr:nth-child(even) td,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.order_details tbody tr:nth-child(even) th,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.my_account_subscriptions tbody tr:nth-child(even) td,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.my_account_subscriptions tbody tr:nth-child(even) th,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.subscription_details tbody tr:nth-child(even) td,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.subscription_details tbody tr:nth-child(even) th,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table tbody tr:nth-child(even) td,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table tbody tr:nth-child(even) th {
  background: rgba(255, 255, 255, 0.03);
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.shop_table small,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-table--order-details small,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.order_details small,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.my_account_subscriptions small,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.subscription_details small,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table small {
  color: rgba(232, 232, 240, 0.72);
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.shop_table .woocommerce-Price-amount,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-table--order-details .woocommerce-Price-amount,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.order_details .woocommerce-Price-amount,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.my_account_subscriptions .woocommerce-Price-amount,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.subscription_details .woocommerce-Price-amount,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table .woocommerce-Price-amount {
  color: inherit;
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tfoot th,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tfoot td,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-table--order-details tfoot th,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-table--order-details tfoot td,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.order_details tfoot th,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.order_details tfoot td,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.my_account_subscriptions tfoot th,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.my_account_subscriptions tfoot td,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.subscription_details tfoot th,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.subscription_details tfoot td,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table tfoot th,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table tfoot td {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: #e8e8f0;
}
@media (max-width: 768px) {
  html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.shop_table_responsive tr,
  html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tr {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
  }
  html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.shop_table_responsive td,
  html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.shop_table td {
    color: #e8e8f0 !important;
    border-bottom-color: rgba(255, 255, 255, 0.08) !important;
  }
  html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.shop_table_responsive td::before,
  html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.shop_table td::before {
    color: rgba(255, 255, 255, 0.55) !important;
  }
  html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.shop_table_responsive td.order-actions::before,
  html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.shop_table_responsive td.subscription-actions::before,
  html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.shop_table_responsive td.membership-actions.order-actions::before,
  html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.shop_table td.order-actions::before,
  html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.shop_table td.subscription-actions::before,
  html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content table.shop_table td.membership-actions.order-actions::before {
    display: none;
  }
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message {
  color: #d6f6dd;
  background: #1e3525;
  border-color: #2e5a3a;
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content p.no_subscriptions {
  color: #d3e6ff;
  background: #1f2f49;
  border-color: #35527f;
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-error {
  color: #ffd4d4;
  background: #4a2525;
  border-color: #7a3838;
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content p.no_subscriptions a:not(.button) {
  color: #c9b6ff;
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content p.no_subscriptions a:not(.button):hover {
  color: #dfd4ff;
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content .subscription-auto-renew-toggle__i {
  border-color: #34d399;
  background-color: rgba(52, 211, 153, 0.45);
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content .subscription-auto-renew-toggle--off .subscription-auto-renew-toggle__i {
  border-color: rgba(255, 255, 255, 0.35);
  background-color: rgba(255, 255, 255, 0.2);
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content .subscription-auto-renew-toggle--off .subscription-auto-renew-toggle__i::before {
  background: #f4f4f8;
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content .subscription-auto-renew-toggle__i::before {
  background: #fff;
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content .subscription-auto-renew-toggle-disabled-note {
  color: rgba(232, 232, 240, 0.75);
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content a.wcs-switch-link {
  color: #c9b6ff;
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content a.wcs-switch-link:hover {
  color: #dfd4ff;
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content dl.variation {
  color: rgba(232, 232, 240, 0.72);
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content fieldset {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content fieldset legend {
  color: #fff;
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content .form-row label {
  color: #e0dce8;
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content .form-row input.input-text,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content .form-row textarea,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content .form-row select {
  background: #1a1a22;
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content .form-row input.input-text:focus,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content .form-row textarea:focus,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content .form-row select:focus {
  border-color: #b8a0ff;
  box-shadow: 0 0 0 3px rgba(184, 160, 255, 0.2);
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields .select2-container--default .select2-selection--single {
  background: #1a1a22;
  border-color: rgba(255, 255, 255, 0.15);
  color: #e8e8f0;
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #e8e8f0;
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-PaymentMethods li,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content ul.payment_methods li {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-pagination li a,
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-pagination li span {
  background: #1a1a22;
  border-color: rgba(255, 255, 255, 0.12);
  color: #e8e8f0;
}
html.theme-dark body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-pagination li span.current {
  background: #8c53ff;
  color: #fff;
}

/* Светлая тема: нет класса theme-dark на html. */
.daybooster-breadcrumbs {
  padding: 8px 10px 10px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(44, 62, 80, 0.72);
}
.daybooster-breadcrumbs .wrapper {
  max-width: 100%;
}
.daybooster-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.daybooster-breadcrumbs__item {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
}
.daybooster-breadcrumbs__link {
  color: rgba(44, 62, 80, 0.88);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.daybooster-breadcrumbs__link:hover, .daybooster-breadcrumbs__link:focus {
  color: #141a21;
  border-bottom-color: rgba(83, 58, 113, 0.35);
}
.daybooster-breadcrumbs__current {
  color: #141a21;
  font-weight: 500;
}
.daybooster-breadcrumbs__sep {
  margin: 0 10px;
  color: rgba(44, 62, 80, 0.4);
  user-select: none;
}

/* Тёмная тема: по умолчанию на сайте или явный выбор в переключателе. */
/* Страница программы: после hero, в колонке контента (без вложенного .wrapper). */
.single-capability_selling .capability_content > .daybooster-breadcrumbs--capability-after-hero {
  padding: 4px 0 18px;
  margin: 0;
}

html.theme-dark .daybooster-breadcrumbs {
  color: rgba(230, 235, 245, 0.55);
}
html.theme-dark .daybooster-breadcrumbs .daybooster-breadcrumbs__link {
  color: rgba(230, 235, 245, 0.8);
}
html.theme-dark .daybooster-breadcrumbs .daybooster-breadcrumbs__link:hover, html.theme-dark .daybooster-breadcrumbs .daybooster-breadcrumbs__link:focus {
  color: #fff;
  border-bottom-color: rgba(230, 235, 245, 0.3);
}
html.theme-dark .daybooster-breadcrumbs .daybooster-breadcrumbs__current {
  color: rgba(245, 247, 252, 0.95);
}
html.theme-dark .daybooster-breadcrumbs .daybooster-breadcrumbs__sep {
  color: rgba(230, 235, 245, 0.28);
}

/**
 * Кабинет тренера (coach_cabinet) + блок программ ученика на /create/
 */
.coach_cabinet {
  --coach-card-bg: #ffffff;
  --coach-card-border: rgba(83, 58, 113, 0.12);
  --coach-card-shadow: 0 8px 32px rgba(20, 26, 33, 0.06);
  --coach-accent: #533A71;
  --coach-accent-soft: rgba(83, 58, 113, 0.08);
  --coach-text-muted: #2C3E50;
  max-width: 720px;
  margin: 0 auto;
  gap: 28px !important;
}
.coach_cabinet .cabinet_settings_title {
  font-size: 20px;
  font-weight: 700;
  color: #141A21;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.coach_cabinet__section {
  background: var(--coach-card-bg);
  border: 1px solid var(--coach-card-border);
  border-radius: 18px;
  padding: 24px 26px 26px;
  box-shadow: var(--coach-card-shadow);
  position: relative;
  overflow: hidden;
}
.coach_cabinet__section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 4px 0 0 4px;
  background: linear-gradient(180deg, #6e518f 0%, #533A71 50%, #50C5B7 100%);
}
.coach_cabinet__hint {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--coach-text-muted);
  max-width: 52em;
}
.coach_cabinet__section--guide .coach_cabinet__hint {
  margin-bottom: 16px;
}
.coach_cabinet__guide_actions {
  margin: 0;
}
.coach_cabinet__notice {
  margin-bottom: 8px;
  border-radius: 14px;
  overflow: hidden;
}
.coach_cabinet__notice .cabinet_info_message {
  margin: 0;
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.45;
  border-radius: 14px;
  border: 1px solid #b7ebc0;
  background: #ecf9ef;
  color: #1e5f2a;
}
.coach_cabinet__notice .cabinet_info_message--warn {
  border-color: #ffcaca;
  background: #fff5f5;
  color: #7a1f1f;
}
.coach_cabinet__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.coach_cabinet__form .create_step_field {
  width: 100%;
  margin: 0;
}
.coach_cabinet__form .create_step_field label {
  margin: 0 0 10px;
  display: block;
}
.coach_cabinet__form .daybooster_btn {
  margin-top: 4px;
}
.coach_cabinet__form--inline {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
}
.coach_cabinet__form--inline .daybooster_input[type=email] {
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 100%;
}
.coach_cabinet__form--inline .daybooster_btn {
  margin-top: 0;
  flex-shrink: 0;
}
.coach_cabinet__program_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 12px;
  border: 1px solid rgba(83, 58, 113, 0.1);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
}
.coach_cabinet__program_list li {
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.coach_cabinet__program_list li:last-child {
  border-bottom: none;
}
.coach_cabinet__program_link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  color: #141A21;
  text-decoration: none;
  transition: all 0.2s 0.05s ease;
  background: transparent;
}
.coach_cabinet__program_link::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #50C5B7, #533A71);
  flex-shrink: 0;
}
.coach_cabinet__program_link::after {
  content: "";
  margin-left: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid #533A71;
  border-bottom: 2px solid #533A71;
  transform: rotate(-45deg);
  opacity: 0.45;
  flex-shrink: 0;
  transition: all 0.2s 0.05s ease;
}
.coach_cabinet__program_link:hover {
  background: var(--coach-accent-soft);
  color: #533A71;
}
.coach_cabinet__program_link:hover::after {
  opacity: 0.9;
  transform: rotate(-45deg) translate(2px, -2px);
}
.coach_cabinet__empty {
  margin: 0;
  padding: 18px 16px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  color: var(--coach-text-muted);
  background: rgba(83, 58, 113, 0.04);
  border-radius: 12px;
  border: 1px dashed rgba(83, 58, 113, 0.2);
}
.coach_cabinet__client {
  margin-top: 20px;
  padding: 20px 18px 22px;
  border-radius: 14px;
  background: rgba(83, 58, 113, 0.04);
  border: 1px solid rgba(83, 58, 113, 0.1);
}
.coach_cabinet__client:first-of-type {
  margin-top: 8px;
}
.coach_cabinet__client_name {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  color: #141A21;
  line-height: 1.35;
  word-break: break-word;
}
.coach_cabinet__client_status {
  display: inline-block;
  margin-left: 10px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  vertical-align: middle;
}
.coach_cabinet__client_status--pending {
  background: rgba(255, 193, 7, 0.2);
  color: #8a6a00;
  border: 1px solid rgba(255, 193, 7, 0.45);
}
.coach_cabinet__client_status--active {
  background: rgba(46, 160, 67, 0.12);
  color: #1e5f2a;
  border: 1px solid rgba(46, 160, 67, 0.35);
}
.coach_cabinet__checkboxes {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}
@media (max-width: 560px) {
  .coach_cabinet__checkboxes {
    grid-template-columns: 1fr;
  }
}
.coach_cabinet__checkboxes li {
  margin: 0;
}
.coach_cabinet__checkboxes label,
.coach_cabinet__checkboxes .coach_cabinet__check_label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  font-size: 14px;
  line-height: 1.4;
  color: #141A21;
  transition: all 0.2s 0.05s ease;
}
.coach_cabinet__checkboxes label:hover,
.coach_cabinet__checkboxes .coach_cabinet__check_label:hover {
  border-color: rgba(83, 58, 113, 0.25);
  box-shadow: 0 2px 12px rgba(83, 58, 113, 0.06);
}
.coach_cabinet__checkboxes input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  flex-shrink: 0;
  accent-color: #533A71;
  cursor: pointer;
}

/* Блок на странице «Создать программу» для учеников */
.coach_trainee_programs_wrap {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(83, 58, 113, 0.12);
}
.coach_trainee_programs_wrap .create_capability_title {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
  color: #141A21;
}

html.theme-dark .coach_cabinet {
  --coach-card-bg: #1a1f28;
  --coach-card-border: rgba(184, 160, 255, 0.15);
  --coach-card-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --coach-accent-soft: rgba(184, 160, 255, 0.1);
  --coach-text-muted: #a8b0c0;
}
html.theme-dark .coach_cabinet .cabinet_settings_title {
  color: #e8ecf4;
}
html.theme-dark .coach_cabinet__program_list {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(184, 160, 255, 0.15);
}
html.theme-dark .coach_cabinet__program_list li {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
html.theme-dark .coach_cabinet__program_link {
  color: #e8ecf4;
}
html.theme-dark .coach_cabinet__program_link:hover {
  color: #d4c4ff;
  background: rgba(184, 160, 255, 0.08);
}
html.theme-dark .coach_cabinet__empty {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(184, 160, 255, 0.2);
}
html.theme-dark .coach_cabinet__client {
  background: rgba(0, 0, 0, 0.22);
  border-color: rgba(184, 160, 255, 0.12);
}
html.theme-dark .coach_cabinet__client_name {
  color: #e8ecf4;
}
html.theme-dark .coach_cabinet__checkboxes label, html.theme-dark .coach_cabinet__checkboxes .coach_cabinet__check_label {
  background: #222831;
  border-color: rgba(255, 255, 255, 0.08);
  color: #e8ecf4;
}
html.theme-dark .coach_cabinet__checkboxes label:hover, html.theme-dark .coach_cabinet__checkboxes .coach_cabinet__check_label:hover {
  border-color: rgba(184, 160, 255, 0.35);
}
html.theme-dark .coach_cabinet__notice .cabinet_info_message {
  background: #1e3525;
  border-color: #2e5a3a;
  color: #d6f6dd;
}
html.theme-dark .coach_cabinet__notice .cabinet_info_message--warn {
  background: #4a2525;
  border-color: #7a3838;
  color: #ffd4d4;
}
html.theme-dark .coach_trainee_programs_wrap {
  border-top-color: rgba(184, 160, 255, 0.15);
}
html.theme-dark .coach_trainee_programs_wrap .create_capability_title {
  color: #e8ecf4;
}
html.theme-dark .coach_cabinet__client_status--pending {
  background: rgba(255, 193, 7, 0.15);
  color: #ffd86b;
  border-color: rgba(255, 193, 7, 0.35);
}
html.theme-dark .coach_cabinet__client_status--active {
  background: rgba(80, 200, 120, 0.12);
  color: #9ee6b5;
  border-color: rgba(80, 200, 120, 0.35);
}

/* Раздел «Тренеры» в настройках кабинета */
.settings_trainee_coaches__hint {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.5;
  color: #2C3E50;
  max-width: 52em;
}
.settings_trainee_coaches__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.settings_trainee_coaches__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px 18px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(83, 58, 113, 0.12);
  background: rgba(83, 58, 113, 0.04);
}
.settings_trainee_coaches__main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-width: 0;
  flex: 1 1 200px;
}
.settings_trainee_coaches__name {
  font-size: 16px;
  font-weight: 700;
  color: #141A21;
}
.settings_trainee_coaches__email {
  font-size: 14px;
  color: #2C3E50;
  word-break: break-word;
}
.settings_trainee_coaches__status {
  display: inline-block;
  margin-top: 4px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
}
.settings_trainee_coaches__status--pending {
  background: rgba(255, 193, 7, 0.2);
  color: #8a6a00;
  border: 1px solid rgba(255, 193, 7, 0.45);
}
.settings_trainee_coaches__status--active {
  background: rgba(46, 160, 67, 0.12);
  color: #1e5f2a;
  border: 1px solid rgba(46, 160, 67, 0.35);
}
.settings_trainee_coaches__unlink_form {
  margin: 0;
  flex-shrink: 0;
  align-self: center;
}
.settings_trainee_coaches__unlink_form .daybooster_btn {
  margin: 0;
}

.settings_coach_notice {
  margin-bottom: 16px;
}
.settings_coach_notice .cabinet_info_message {
  margin: 0;
}

html.theme-dark .settings_trainee_coaches__hint {
  color: #a8b0c0;
}
html.theme-dark .settings_trainee_coaches__row {
  background: rgba(0, 0, 0, 0.22);
  border-color: rgba(184, 160, 255, 0.15);
}
html.theme-dark .settings_trainee_coaches__name {
  color: #e8ecf4;
}
html.theme-dark .settings_trainee_coaches__email {
  color: #a8b0c0;
}
html.theme-dark .settings_trainee_coaches__status--pending {
  background: rgba(255, 193, 7, 0.12);
  color: #ffd86b;
  border-color: rgba(255, 193, 7, 0.3);
}
html.theme-dark .settings_trainee_coaches__status--active {
  background: rgba(80, 200, 120, 0.1);
  color: #9ee6b5;
  border-color: rgba(80, 200, 120, 0.3);
}

.parallax {
  background-image: url("../images/ef640de8a1cbf0784ce11215c4c13fcf.jpg");
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  opacity: 0.2;
}

.wrapper {
  width: 1200px;
  margin: 0 auto;
  max-width: 100%;
}

.daybooster_btn {
  text-align: center;
  display: block;
  padding: 15px 15px;
  text-decoration: none;
  background: #8C53FF;
  color: #fff;
  font-weight: 300;
  font-size: 12px;
  text-transform: uppercase;
  transition: all 0.2s 0.05s ease;
  border-radius: 25px;
  border-bottom: 4px solid #6C40C4;
  width: 100%;
  max-width: 250px;
}
.daybooster_btn:hover {
  text-decoration: none;
  background: #7746D8;
}
.daybooster_btn:focus {
  background: #6C40C4;
}
.daybooster_btn.green {
  background: #4CD964;
  border-bottom: 4px solid #369A46;
}
.daybooster_btn.green:hover {
  background: #44C45A;
}
.daybooster_btn.green:focus {
  background: #369A46;
}
.daybooster_btn.sky {
  background: #5AC8FA;
  border-bottom: 4px solid #3D87A9;
}
.daybooster_btn.sky:hover {
  background: #4BA6D0;
}
.daybooster_btn.sky:focus {
  background: #3D87A9;
}
.daybooster_btn.red {
  background: #FF3A2D;
  border-bottom: 4px solid #D83226;
}
.daybooster_btn.red:hover {
  background: #E73529;
}
.daybooster_btn.red:focus {
  background: #D83226;
}
.daybooster_btn.darkblue {
  background: #0077FF;
  border-bottom: 4px solid #005AC1;
}
.daybooster_btn.darkblue:hover {
  background: #0069E1;
}
.daybooster_btn.darkblue:focus {
  background: #005AC1;
}

.block_element {
  pointer-events: none !important;
  position: relative;
}
.block_element:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: no-repeat center center rgba(255, 255, 255, 0.8);
  background-size: 100px 100px;
}
.block_element.with_spinner:after {
  background-image: url("images/spinner.svg");
}

body > header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #141A21;
  padding: 10px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1200px) {
  body > header {
    padding: 10px 15px;
  }
}
body > header .logo {
  max-width: 200px;
}
body > header .logo img {
  display: block;
}
body > header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  body > header .header_inner.desktop {
    display: none;
  }
}
body > header .header_inner.mobile {
  display: none;
}
@media (max-width: 1024px) {
  body > header .header_inner.mobile {
    display: flex;
  }
}
body > header .menu ul {
  display: flex;
  gap: 20px;
}
body > header .menu ul li {
  list-style: none;
}
body > header .menu ul li a {
  color: #fff;
}
body > header .menu ul li a:hover {
  text-decoration: underline;
}
body > header .menu ul li.menu_premium a {
  font-weight: bold;
  color: #4CD964;
}
body > header .header_cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  padding: 6px 10px;
  margin: 0 8px 0 0;
}
body > header .header_cart:hover {
  color: rgba(255, 255, 255, 0.9);
}
body > header .header_cart .header_cart_icon {
  display: inline-flex;
  line-height: 1;
}
body > header .header_cart .header_cart_count {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  color: #fff;
  background: #8C53FF;
  border-radius: 9px;
}
body > header .header_shop_actions {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-right: 8px;
}
body > header .header_shop_actions .header_cart {
  margin-right: 0;
}
body > header .header_shop_actions--mobile {
  margin-right: 0;
  margin-bottom: 16px;
}
body > header .header_account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 6px 10px;
}
body > header .header_account:hover {
  color: rgba(255, 255, 255, 0.9);
}
body > header .header_account .header_account_icon {
  display: inline-flex;
  line-height: 1;
}
body > header #header-cart-fragment,
body > header #header-cart-fragment-mobile {
  display: inline-flex;
  align-items: center;
}
body > header .header_premium_badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: linear-gradient(135deg, #ffd54f 0%, #ffb300 50%, #ff8f00 100%);
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(255, 179, 0, 0.4);
  white-space: nowrap;
}
body > header .header_premium_price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  background: linear-gradient(135deg, rgba(255, 213, 79, 0.95) 0%, rgba(255, 179, 0, 0.9) 100%);
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(255, 179, 0, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
body > header .header_premium_price:hover {
  color: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 179, 0, 0.45);
}
body > header .header_premium_price .header_premium_price_label {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.9;
}
body > header .header_premium_price .header_premium_price_value {
  font-weight: 700;
}
body > header .header_premium_price .header_premium_price_value .woocommerce-Price-amount {
  font-weight: 700;
}
body > header .header_premium_price .header_premium_price_value del {
  opacity: 0.75;
  font-weight: 500;
}
body > header .header_premium_price--mobile {
  margin-bottom: 12px;
  align-self: flex-start;
}
body > header .header_user {
  display: inline-flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  position: relative;
}
body > header .header_user .avatar {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}
body > header .header_user .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body > header .header_meta {
  display: flex;
  gap: 20px;
}
body > header .header_meta a {
  color: #fff;
  font-size: 16px;
}
body > header .header_meta a:hover {
  text-decoration: underline;
}
body > header .menu_toggle {
  display: inline-block;
}
body > header .header_menu_mobile {
  color: #fff;
  padding: 20px 0;
  display: none;
}
body > header .header_menu_mobile .menu ul {
  flex-direction: column;
  margin: 0 0 20px;
  border-bottom: 1px solid #888;
  padding: 0 0 20px;
}
body > header .header_menu_mobile .header_menu_mobile__feedback {
  margin: 0 0 16px;
  padding: 0;
}
body > header .header_menu_mobile .db-feedback-trigger--mobile {
  width: 100%;
  display: block;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
body > header .header_menu_mobile .db-feedback-trigger--mobile:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}
body > header .header_menu_mobile .header_cart {
  color: #fff;
}
body > header .header_menu_mobile .header_user {
  margin-top: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
body > header .header_menu_mobile .header_user .header_meta .header_name {
  font-size: 14px;
  line-height: 1.35;
  color: #fff;
  width: 100%;
  padding-bottom: 10px;
  margin-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
body > header .header_menu_mobile .header_user .header_meta .header_name .display_name {
  font-weight: 600;
}
body > header .header_menu_mobile .header_user .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
body > header .header_menu_mobile .header_user .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body > header .header_menu_mobile .header_user .header_meta {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
body > header .header_menu_mobile .header_user .header_meta a {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  padding: 8px 0;
  text-decoration: none;
}
body > header .header_menu_mobile .header_user .header_meta a:hover {
  text-decoration: underline;
}
body > header .header_meta_block {
  background: #fff;
  border: 1px solid #eceaf8;
  box-shadow: 0 14px 30px rgba(20, 26, 33, 0.18);
  padding: 12px;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 220px;
  display: none;
  border-radius: 14px;
  z-index: 11;
}
body > header .header_meta_block .header_name--dropdown {
  font-size: 13px;
  line-height: 1.35;
  color: #26252E;
  padding: 4px 10px 12px;
  margin: -4px -2px 4px;
  border-bottom: 1px solid #f1f0fa;
}
body > header .header_meta_block .header_name--dropdown .display_name {
  font-weight: 600;
}
body > header .header_meta_block:before {
  content: "";
  position: absolute;
  top: -6px;
  right: 18px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-top: 1px solid #eceaf8;
  border-left: 1px solid #eceaf8;
  transform: rotate(45deg);
}
body > header .header_meta_block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body > header .header_meta_block ul li {
  padding: 0;
}
body > header .header_meta_block ul li:not(:last-child) {
  border-bottom: 1px solid #f1f0fa;
}
body > header .header_meta_block ul li a {
  display: block;
  padding: 11px 10px;
  color: #26252E;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
body > header .header_meta_block ul li a:hover {
  background: #f5f1ff;
  color: #6c40c4;
  text-decoration: none;
}
body > header .header_feedback_btn {
  flex-shrink: 0;
  padding: 8px 14px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
body > header .header_feedback_btn:hover {
  background: rgba(255, 255, 255, 0.22);
}
body > header .dark-mode-toggle {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
body > header .dark-mode-toggle:hover {
  background: rgba(255, 255, 255, 0.22);
}
body > header .dark-mode-toggle .dark-mode-toggle__icon {
  display: none;
  width: 22px;
  height: 22px;
}
body > header .dark-mode-toggle .dark-mode-toggle__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
body > header .dark-mode-toggle .dark-mode-toggle__icon--moon {
  display: inline-flex;
}
body > header .dark-mode-toggle .dark-mode-toggle__icon--sun {
  display: none;
}
body > header .dark-mode-toggle.dark-mode-toggle--mobile {
  margin-bottom: 12px;
}

/* Страница 404 */
.page_404 {
  padding: 60px 20px 80px;
  text-align: center;
}
.page_404 .page_404_inner {
  max-width: 480px;
  margin: 0 auto;
}
.page_404 .page_404_title {
  font-size: 72px;
  font-weight: 700;
  color: #26252E;
  margin: 0 0 16px;
  line-height: 1;
}
.page_404 .page_404_text {
  font-size: 18px;
  color: #555;
  margin: 0 0 24px;
  line-height: 1.5;
}
.page_404 .page_404_sub {
  font-size: 15px;
  color: #333;
  margin: 0 0 16px;
}
.page_404 .page_404_links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 16px;
  margin-bottom: 28px;
}
.page_404 .page_404_home {
  margin: 0;
  font-size: 14px;
}
.page_404 .page_404_home a {
  color: var(--daybooster-accent, #6c5ce7);
  text-decoration: none;
}
.page_404 .page_404_home a:hover {
  text-decoration: underline;
}

html.theme-dark .page_404 .page_404_title {
  color: #e8e8f0;
}
html.theme-dark .page_404 .page_404_text {
  color: #a0a0b0;
}
html.theme-dark .page_404 .page_404_sub {
  color: #c8c8d4;
}
html.theme-dark .page_404 .page_404_home a {
  color: #b8a0ff;
}

footer {
  background: #1E1E1E;
  padding: 20px 0;
  color: #fff;
}
footer .footer_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 20px;
  width: 100%;
}
@media (max-width: 767px) {
  footer .footer_block {
    flex-wrap: wrap;
    gap: 20px;
  }
}
footer .logo {
  max-width: 200px;
}
footer .slogan {
  font-size: 14px;
  text-align: center;
  font-weight: bold;
}
@media (max-width: 767px) {
  footer .slogan {
    width: 100%;
    text-align: left;
  }
}
footer .menu {
  width: 100%;
}
footer .menu ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
}
@media (max-width: 767px) {
  footer .menu ul {
    flex-direction: column;
  }
}
footer .menu ul li a {
  font-size: 14px;
  color: #fff;
}
footer .menu ul li a:hover {
  text-decoration: underline;
}
footer .footer_feedback_strip {
  margin-top: 28px;
  padding: 28px 24px 32px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(158, 82, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 45%, rgba(30, 30, 30, 0.4) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}
@media (max-width: 640px) {
  footer .footer_feedback_strip {
    padding: 22px 18px 26px;
    margin-top: 22px;
  }
}
footer .footer_feedback_strip__inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
footer .footer_feedback_strip__eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
footer .footer_feedback_strip__title {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
}
@media (max-width: 640px) {
  footer .footer_feedback_strip__title {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
footer .footer_feedback_strip__hint {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}
footer .footer_feedback_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #9e52ff 0%, #7b3dd8 50%, #6b2fc9 100%);
  box-shadow: 0 4px 20px rgba(158, 82, 255, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
footer .footer_feedback_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(158, 82, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  filter: brightness(1.05);
}
footer .footer_feedback_btn:active {
  transform: translateY(0);
}
footer .footer_feedback_btn__icon {
  display: flex;
  flex-shrink: 0;
  opacity: 0.95;
}
footer .footer_feedback_btn__icon svg {
  display: block;
}
footer .footer_feedback_btn__text {
  white-space: nowrap;
}
@media (max-width: 400px) {
  footer .footer_feedback_btn__text {
    white-space: normal;
    text-align: left;
    line-height: 1.25;
  }
}
footer .footer_legal {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
}
footer .footer_legal a {
  color: #fff;
  text-decoration: none;
}
footer .footer_legal a:hover {
  text-decoration: underline;
}
@media (max-width: 640px) {
  footer .footer_legal {
    justify-content: flex-start;
  }
}
@media (max-width: 1200px) {
  footer {
    padding: 20px 15px;
  }
}

.cabinet {
  padding: 50px 0;
}
@media (max-width: 1200px) {
  .cabinet {
    padding: 50px 15px;
  }
}
.cabinet_page_title {
  margin: 0 0 20px;
  color: #2C3E50;
}
.cabinet_info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: baseline;
}
.cabinet_user_image {
  overflow: hidden;
  border-radius: 20px;
}
.cabinet_user_image img {
  display: block;
}

.cabinet_inner {
  display: flex;
  gap: 40px;
  width: 100%;
}
@media (max-width: 840px) {
  .cabinet_inner {
    flex-wrap: wrap;
  }
}

.cabinet_sidebar {
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cabinet_sidebar .cabinet_premium_until_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 6px;
  padding: 10px 12px;
  background: linear-gradient(135deg, rgba(255, 213, 79, 0.2) 0%, rgba(255, 179, 0, 0.15) 100%);
  border: 1px solid rgba(255, 179, 0, 0.35);
  border-radius: 12px;
  font-size: 12px;
}
.cabinet_sidebar .cabinet_premium_until_label {
  width: 100%;
  color: #7d6b00;
  font-weight: 600;
}
.cabinet_sidebar .cabinet_premium_until_date {
  font-weight: 700;
  color: #1a1a1a;
}
.cabinet_sidebar .cabinet_premium_until_note {
  color: #666;
  font-size: 11px;
}
.cabinet_sidebar .daybooster_btn {
  margin: 0 0 5px;
}
@media (max-width: 840px) {
  .cabinet_sidebar {
    width: 100%;
  }
}
@media (max-width: 840px) {
  .cabinet_sidebar.desktop {
    display: none;
  }
}
.cabinet_sidebar.mobile {
  display: none;
}
@media (max-width: 840px) {
  .cabinet_sidebar.mobile {
    display: block;
  }
}
.cabinet_sidebar.mobile .cabinet_mobile_header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cabinet_sidebar.mobile .cabinet_user_image_mobile {
  width: 52px;
  height: 52px;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #f0eefc;
  background: #f7f6ff;
  box-shadow: 0 2px 12px rgba(140, 83, 255, 0.15);
  flex-shrink: 0;
}
.cabinet_sidebar.mobile .cabinet_user_image_mobile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cabinet_sidebar.mobile .sidebar_mobile_toggle {
  flex: 1;
}
.cabinet_sidebar.mobile .cabinet_mobile_menu_inner {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(18, 23, 38, 0.08);
  overflow: hidden;
}
.cabinet_sidebar.mobile .cabinet_mobile_menu_inner a {
  color: #2C3E50;
  padding: 14px 16px;
  border-bottom: 1px solid #f0f0f4;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.2;
  transition: background 0.15s ease-out, color 0.15s ease-out;
}
.cabinet_sidebar.mobile .cabinet_mobile_menu_inner a.sky {
  background: rgba(111, 66, 193, 0.12);
  color: #2C3E50;
}
.cabinet_sidebar.mobile .cabinet_mobile_menu_inner a:hover {
  background: rgba(111, 66, 193, 0.08);
}
.cabinet_sidebar.mobile .cabinet_mobile_menu_inner a:last-child {
  border-bottom: 0;
}

.sidebar_mobile_toggle {
  border-radius: 15px;
  padding: 12px 42px 12px 14px;
  display: block;
  color: #2C3E50;
  background: url("data:image/svg+xml,%3Csvg width='64px' height='64px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%232C3E50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/g%3E%3C/svg%3E") right 14px center no-repeat #f3f1ff;
  background-size: 20px;
  border: 1px solid rgba(111, 66, 193, 0.18);
  box-shadow: 0 6px 18px rgba(111, 66, 193, 0.1);
  transition: background-color 0.15s ease-out, border-color 0.15s ease-out;
}
.sidebar_mobile_toggle.is-open {
  background-color: #efeaff;
}

.sidebar_block_mobile_inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar_block_mobile {
  display: none;
  margin-top: 10px;
}

html.theme-dark .cabinet_sidebar.mobile .cabinet_user_image_mobile {
  border-color: rgba(184, 160, 255, 0.25);
  background: rgba(184, 160, 255, 0.1);
}
html.theme-dark .cabinet_sidebar.mobile .cabinet_mobile_menu_inner {
  background: #14141a;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}
html.theme-dark .cabinet_sidebar.mobile .cabinet_mobile_menu_inner a {
  color: #e8e8f0;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
html.theme-dark .cabinet_sidebar.mobile .cabinet_mobile_menu_inner a.sky {
  background: rgba(184, 160, 255, 0.14);
  color: #fff;
}
html.theme-dark .cabinet_sidebar.mobile .cabinet_mobile_menu_inner a:hover {
  background: rgba(184, 160, 255, 0.1);
}
html.theme-dark .sidebar_mobile_toggle {
  color: #e8e8f0;
  background: url("data:image/svg+xml,%3Csvg width='64px' height='64px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%23e8e8f0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/g%3E%3C/svg%3E") right 14px center no-repeat rgba(255, 255, 255, 0.06);
  background-size: 20px;
  border-color: rgba(184, 160, 255, 0.25);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
}
html.theme-dark .sidebar_mobile_toggle.is-open {
  background-color: rgba(184, 160, 255, 0.12);
}

.cabinet_main_area {
  width: calc(100% - 200px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 840px) {
  .cabinet_main_area {
    width: 100%;
  }
}
.cabinet_main_area .capability_cards_grid {
  gap: 2%;
  row-gap: 32px;
}

/* Статистика / рейтинг кабинета */
.cabinet_stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cabinet_stats__intro {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #555;
  max-width: 52em;
}
.cabinet_stats__main-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cabinet_stats__main-tab {
  margin: 0;
  padding: 12px 22px;
  border: 1px solid #d8d8e4;
  border-radius: 999px;
  background: #fff;
  color: #444;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.cabinet_stats__main-tab:hover {
  border-color: rgba(158, 82, 255, 0.45);
  color: #533A71;
}
.cabinet_stats__main-tab.is-active {
  background: #533A71;
  border-color: #533A71;
  color: #fff;
}
.cabinet_stats__main-tab:focus-visible {
  outline: 2px solid rgba(158, 82, 255, 0.55);
  outline-offset: 2px;
}
.cabinet_stats__main-panel[hidden] {
  display: none !important;
}
.cabinet_stats__main-panel-empty {
  margin: 0;
  padding: 24px 20px;
  border-radius: 16px;
  background: #f7f6ff;
  box-shadow: 0 0 0 1px rgba(111, 66, 193, 0.08);
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}
.cabinet_stats__completed-programs {
  padding: 18px 20px 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(111, 66, 193, 0.1);
}
.cabinet_stats__completed-programs-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #2a2a33;
}
.cabinet_stats__completed-programs-hint {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.5;
  color: #666;
  max-width: 52em;
}
.cabinet_stats__completed-programs-empty {
  margin: 0;
  font-size: 14px;
  color: #666;
}
.cabinet_stats__completed-programs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cabinet_stats__completed-programs-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid #e8e6f0;
}
.cabinet_stats__completed-programs-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.cabinet_stats__completed-programs-name {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: #2a2a33;
}
.cabinet_stats__completed-programs-name a {
  color: #533A71;
  text-decoration: none;
}
.cabinet_stats__completed-programs-name a:hover {
  text-decoration: underline;
}
.cabinet_stats__completed-programs-meta {
  font-size: 13px;
  color: #666;
  line-height: 1.45;
}
.cabinet_stats__completed-programs-progress {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
  max-width: 320px;
}
.cabinet_stats__completed-programs-progress-bar {
  height: 8px;
  border-radius: 999px;
  background: #e8e4f5;
  overflow: hidden;
}
.cabinet_stats__completed-programs-progress-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #8c53ff 0%, #5b8cff 100%);
  transition: width 0.35s ease;
}
.cabinet_stats__completed-programs-progress-text {
  font-size: 12px;
  font-weight: 600;
  color: #4a4460;
  line-height: 1.35;
}
.cabinet_stats__completed-programs-progress-note {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: #888;
  max-width: 36em;
}
.cabinet_stats__completed-programs-remove {
  margin-top: 12px;
  align-self: flex-start;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: #a94442;
  background: rgba(169, 68, 66, 0.06);
  border: 1px solid rgba(169, 68, 66, 0.35);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.cabinet_stats__completed-programs-remove:hover {
  background: rgba(169, 68, 66, 0.12);
  border-color: rgba(169, 68, 66, 0.55);
}
.cabinet_stats__completed-programs-remove:focus-visible {
  outline: 2px solid rgba(169, 68, 66, 0.45);
  outline-offset: 2px;
}
.cabinet_stats__completed-programs-remove:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.cabinet_stats__achievements {
  padding: 18px 20px 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(111, 66, 193, 0.1);
}
.cabinet_stats__achievements-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #2a2a33;
}
.cabinet_stats__achievements-hint {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.5;
  color: #666;
}
.cabinet_stats__achievement-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px 16px;
}
.cabinet_stats__achievement {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #e6e4ef;
  background: #faf9ff;
  transition: border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}
.cabinet_stats__achievement--locked {
  filter: none;
  opacity: 0.5;
}
.cabinet_stats__achievement--earned {
  filter: none;
  opacity: 1;
}
.cabinet_stats {
  /* Достижения: своя палитра на каждый id (earned — ярко, locked — тот же оттенок, приглушённо). */
}
.cabinet_stats .cabinet_stats__achievement--id-registered.cabinet_stats__achievement--earned {
  border-color: rgba(99, 102, 241, 0.38);
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.14) 0%, rgba(129, 140, 248, 0.08) 48%, #fff 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-registered.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: #312e81;
}
.cabinet_stats .cabinet_stats__achievement--id-registered.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(49, 46, 129, 0.78);
}
.cabinet_stats .cabinet_stats__achievement--id-registered.cabinet_stats__achievement--locked {
  border-color: rgba(67, 56, 202, 0.22);
  background: linear-gradient(145deg, rgba(67, 56, 202, 0.09) 0%, #e0e7ff 55%, #f4f4f7 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-registered.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: #6366f1;
}
.cabinet_stats .cabinet_stats__achievement--id-registered.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(99, 102, 241, 0.72);
}
.cabinet_stats .cabinet_stats__achievement--id-first_task_day.cabinet_stats__achievement--earned {
  border-color: rgba(13, 148, 136, 0.38);
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.14) 0%, rgba(45, 212, 191, 0.08) 48%, #fff 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-first_task_day.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: #134e4a;
}
.cabinet_stats .cabinet_stats__achievement--id-first_task_day.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(19, 78, 74, 0.78);
}
.cabinet_stats .cabinet_stats__achievement--id-first_task_day.cabinet_stats__achievement--locked {
  border-color: rgba(15, 118, 110, 0.22);
  background: linear-gradient(145deg, rgba(15, 118, 110, 0.09) 0%, #ccfbf1 55%, #f4f4f7 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-first_task_day.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: #115e59;
}
.cabinet_stats .cabinet_stats__achievement--id-first_task_day.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(17, 94, 89, 0.72);
}
.cabinet_stats .cabinet_stats__achievement--id-first_success_day.cabinet_stats__achievement--earned {
  border-color: rgba(217, 119, 6, 0.38);
  background: linear-gradient(145deg, rgba(217, 119, 6, 0.14) 0%, rgba(251, 191, 36, 0.08) 48%, #fff 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-first_success_day.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: #78350f;
}
.cabinet_stats .cabinet_stats__achievement--id-first_success_day.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(120, 53, 15, 0.78);
}
.cabinet_stats .cabinet_stats__achievement--id-first_success_day.cabinet_stats__achievement--locked {
  border-color: rgba(180, 83, 9, 0.22);
  background: linear-gradient(145deg, rgba(180, 83, 9, 0.09) 0%, #fef3c7 55%, #f4f4f7 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-first_success_day.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: #92400e;
}
.cabinet_stats .cabinet_stats__achievement--id-first_success_day.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(146, 64, 14, 0.72);
}
.cabinet_stats .cabinet_stats__achievement--id-ten_tasks.cabinet_stats__achievement--earned {
  border-color: rgba(147, 51, 234, 0.38);
  background: linear-gradient(145deg, rgba(147, 51, 234, 0.14) 0%, rgba(167, 139, 250, 0.08) 48%, #fff 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-ten_tasks.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: #4c1d95;
}
.cabinet_stats .cabinet_stats__achievement--id-ten_tasks.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(76, 29, 149, 0.78);
}
.cabinet_stats .cabinet_stats__achievement--id-ten_tasks.cabinet_stats__achievement--locked {
  border-color: rgba(124, 58, 237, 0.22);
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.09) 0%, #ede9fe 55%, #f4f4f7 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-ten_tasks.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: #5b21b6;
}
.cabinet_stats .cabinet_stats__achievement--id-ten_tasks.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(91, 33, 182, 0.72);
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_50.cabinet_stats__achievement--earned {
  border-color: rgba(2, 132, 199, 0.38);
  background: linear-gradient(145deg, rgba(2, 132, 199, 0.14) 0%, rgba(56, 189, 248, 0.08) 48%, #fff 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_50.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: #0c4a6e;
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_50.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(12, 74, 110, 0.78);
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_50.cabinet_stats__achievement--locked {
  border-color: rgba(3, 105, 161, 0.22);
  background: linear-gradient(145deg, rgba(3, 105, 161, 0.09) 0%, #e0f2fe 55%, #f4f4f7 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_50.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: #075985;
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_50.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(7, 89, 133, 0.72);
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_100.cabinet_stats__achievement--earned {
  border-color: rgba(5, 150, 105, 0.38);
  background: linear-gradient(145deg, rgba(5, 150, 105, 0.14) 0%, rgba(52, 211, 153, 0.08) 48%, #fff 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_100.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: #064e3b;
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_100.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(6, 78, 59, 0.78);
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_100.cabinet_stats__achievement--locked {
  border-color: rgba(4, 120, 87, 0.22);
  background: linear-gradient(145deg, rgba(4, 120, 87, 0.09) 0%, #d1fae5 55%, #f4f4f7 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_100.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: #065f46;
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_100.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(6, 95, 70, 0.72);
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_500.cabinet_stats__achievement--earned {
  border-color: rgba(225, 29, 72, 0.38);
  background: linear-gradient(145deg, rgba(225, 29, 72, 0.14) 0%, rgba(251, 113, 133, 0.08) 48%, #fff 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_500.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: #881337;
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_500.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(136, 19, 55, 0.78);
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_500.cabinet_stats__achievement--locked {
  border-color: rgba(190, 18, 60, 0.22);
  background: linear-gradient(145deg, rgba(190, 18, 60, 0.09) 0%, #ffe4e6 55%, #f4f4f7 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_500.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: #9f1239;
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_500.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(159, 18, 57, 0.72);
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_1000.cabinet_stats__achievement--earned {
  border-color: rgba(79, 70, 229, 0.38);
  background: linear-gradient(145deg, rgba(79, 70, 229, 0.14) 0%, rgba(129, 140, 248, 0.08) 48%, #fff 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_1000.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: #312e81;
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_1000.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(49, 46, 129, 0.78);
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_1000.cabinet_stats__achievement--locked {
  border-color: rgba(67, 56, 202, 0.22);
  background: linear-gradient(145deg, rgba(67, 56, 202, 0.09) 0%, #e0e7ff 55%, #f4f4f7 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_1000.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: #3730a3;
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_1000.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(55, 48, 163, 0.72);
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_10000.cabinet_stats__achievement--earned {
  border-color: rgba(192, 38, 211, 0.38);
  background: linear-gradient(145deg, rgba(192, 38, 211, 0.14) 0%, rgba(232, 121, 249, 0.08) 48%, #fff 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_10000.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: #701a75;
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_10000.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(112, 26, 117, 0.78);
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_10000.cabinet_stats__achievement--locked {
  border-color: rgba(162, 28, 175, 0.22);
  background: linear-gradient(145deg, rgba(162, 28, 175, 0.09) 0%, #fae8ff 55%, #f4f4f7 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_10000.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: #86198f;
}
.cabinet_stats .cabinet_stats__achievement--id-tasks_10000.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(134, 25, 143, 0.72);
}
.cabinet_stats .cabinet_stats__achievement--id-ten_success_days.cabinet_stats__achievement--earned {
  border-color: rgba(101, 163, 13, 0.38);
  background: linear-gradient(145deg, rgba(101, 163, 13, 0.14) 0%, rgba(163, 230, 53, 0.08) 48%, #fff 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-ten_success_days.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: #365314;
}
.cabinet_stats .cabinet_stats__achievement--id-ten_success_days.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(54, 83, 20, 0.78);
}
.cabinet_stats .cabinet_stats__achievement--id-ten_success_days.cabinet_stats__achievement--locked {
  border-color: rgba(77, 124, 15, 0.22);
  background: linear-gradient(145deg, rgba(77, 124, 15, 0.09) 0%, #ecfccb 55%, #f4f4f7 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-ten_success_days.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: #3f6212;
}
.cabinet_stats .cabinet_stats__achievement--id-ten_success_days.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(63, 98, 18, 0.72);
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_30.cabinet_stats__achievement--earned {
  border-color: rgba(8, 145, 178, 0.38);
  background: linear-gradient(145deg, rgba(8, 145, 178, 0.14) 0%, rgba(34, 211, 238, 0.08) 48%, #fff 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_30.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: #164e63;
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_30.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(22, 78, 99, 0.78);
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_30.cabinet_stats__achievement--locked {
  border-color: rgba(14, 116, 144, 0.22);
  background: linear-gradient(145deg, rgba(14, 116, 144, 0.09) 0%, #cffafe 55%, #f4f4f7 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_30.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: #155e75;
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_30.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(21, 94, 117, 0.72);
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_50.cabinet_stats__achievement--earned {
  border-color: rgba(234, 88, 12, 0.38);
  background: linear-gradient(145deg, rgba(234, 88, 12, 0.14) 0%, rgba(251, 146, 60, 0.08) 48%, #fff 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_50.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: #7c2d12;
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_50.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(124, 45, 18, 0.78);
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_50.cabinet_stats__achievement--locked {
  border-color: rgba(194, 65, 12, 0.22);
  background: linear-gradient(145deg, rgba(194, 65, 12, 0.09) 0%, #ffedd5 55%, #f4f4f7 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_50.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: #9a3412;
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_50.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(154, 52, 18, 0.72);
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_100.cabinet_stats__achievement--earned {
  border-color: rgba(219, 39, 119, 0.38);
  background: linear-gradient(145deg, rgba(219, 39, 119, 0.14) 0%, rgba(244, 114, 182, 0.08) 48%, #fff 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_100.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: #831843;
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_100.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(131, 24, 67, 0.78);
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_100.cabinet_stats__achievement--locked {
  border-color: rgba(190, 24, 93, 0.22);
  background: linear-gradient(145deg, rgba(190, 24, 93, 0.09) 0%, #fce7f3 55%, #f4f4f7 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_100.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: #9d174d;
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_100.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(157, 23, 77, 0.72);
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_365.cabinet_stats__achievement--earned {
  border-color: rgba(37, 99, 235, 0.38);
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.14) 0%, rgba(96, 165, 250, 0.08) 48%, #fff 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_365.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: #1e3a8a;
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_365.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(30, 58, 138, 0.78);
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_365.cabinet_stats__achievement--locked {
  border-color: rgba(29, 78, 216, 0.22);
  background: linear-gradient(145deg, rgba(29, 78, 216, 0.09) 0%, #dbeafe 55%, #f4f4f7 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_365.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: #1e40af;
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_365.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(30, 64, 175, 0.72);
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_1000.cabinet_stats__achievement--earned {
  border-color: rgba(220, 38, 38, 0.38);
  background: linear-gradient(145deg, rgba(220, 38, 38, 0.14) 0%, rgba(249, 115, 22, 0.08) 48%, #fff 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_1000.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: #7f1d1d;
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_1000.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(127, 29, 29, 0.78);
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_1000.cabinet_stats__achievement--locked {
  border-color: rgba(185, 28, 28, 0.22);
  background: linear-gradient(145deg, rgba(185, 28, 28, 0.09) 0%, #fee2e2 55%, #f4f4f7 100%);
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_1000.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: #991b1b;
}
.cabinet_stats .cabinet_stats__achievement--id-success_days_1000.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(153, 27, 27, 0.72);
}
.cabinet_stats__achievement-icon {
  flex-shrink: 0;
  line-height: 0;
}
.cabinet_stats__achievement-icon svg {
  display: block;
  width: 40px;
  height: 40px;
}
.cabinet_stats__achievement-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.cabinet_stats__achievement-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #333;
}
.cabinet_stats__achievement-desc {
  font-size: 12px;
  line-height: 1.45;
  color: #666;
}
.cabinet_stats__block {
  padding: 18px 20px 20px;
  border-radius: 16px;
  background: #f7f6ff;
  box-shadow: 0 0 0 1px rgba(111, 66, 193, 0.08);
}
.cabinet_stats__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.cabinet_stats__tab {
  margin: 0;
  padding: 10px 16px;
  border: 1px solid #d8d8e4;
  border-radius: 999px;
  background: #fff;
  color: #444;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.cabinet_stats__tab:hover {
  border-color: rgba(158, 82, 255, 0.45);
  color: #533A71;
}
.cabinet_stats__tab.is-active {
  background: #533A71;
  border-color: #533A71;
  color: #fff;
}
.cabinet_stats__tab:focus-visible {
  outline: 2px solid rgba(158, 82, 255, 0.55);
  outline-offset: 2px;
}
.cabinet_stats__panel[hidden] {
  display: none !important;
}
.cabinet_stats__range {
  margin: 0 0 8px;
  font-size: 13px;
  color: #666;
}
.cabinet_stats__you {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: #533A71;
}
.cabinet_stats__empty {
  margin: 0;
  font-size: 14px;
  color: #666;
}
.cabinet_stats__tablewrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 4px;
}
.cabinet_stats__table {
  width: 100%;
  min-width: 320px;
  border-collapse: collapse;
  font-size: 14px;
}
.cabinet_stats__table th, .cabinet_stats__table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid #e4e2f0;
}
.cabinet_stats__table th {
  font-weight: 600;
  color: #444;
  background: rgba(255, 255, 255, 0.65);
}
.cabinet_stats__table tbody tr:last-child td {
  border-bottom: none;
}
.cabinet_stats__rank {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.cabinet_stats__rank-cell {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cabinet_stats__rank-num {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  min-width: 1.25em;
}
.cabinet_stats__medal {
  flex-shrink: 0;
  line-height: 0;
}
.cabinet_stats__medal svg {
  display: block;
  width: 32px;
  height: 32px;
}
.cabinet_stats__row--self {
  background: rgba(158, 82, 255, 0.08);
}
.cabinet_stats__row--self td {
  font-weight: 600;
}
.cabinet_stats__badge {
  font-weight: 600;
  color: #533A71;
  font-size: 13px;
}

/* Чеклист «первые шаги» для новых пользователей (кабинет) */
.cabinet_welcome {
  margin: 0 0 8px;
  padding: 0;
  border-radius: 18px;
  border: 1px solid rgba(83, 58, 113, 0.14);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(243, 241, 255, 0.9) 45%, rgba(230, 252, 248, 0.55) 100%);
  box-shadow: 0 8px 32px rgba(83, 58, 113, 0.08);
  overflow: hidden;
}
.cabinet_welcome--hidden {
  display: none !important;
}
.cabinet_welcome--all-done {
  border-color: rgba(76, 217, 100, 0.35);
  background: linear-gradient(145deg, rgba(76, 217, 100, 0.1) 0%, rgba(243, 241, 255, 0.85) 55%, rgba(255, 255, 255, 0.95) 100%);
}
.cabinet_welcome_inner {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 240px);
  gap: 24px 32px;
  padding: 22px 24px 24px;
  align-items: start;
}
@media (max-width: 720px) {
  .cabinet_welcome_inner {
    grid-template-columns: 1fr;
  }
}
.cabinet_welcome_header {
  margin-bottom: 18px;
  position: static;
  top: auto;
  left: auto;
  right: auto;
  z-index: auto;
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.cabinet_welcome_title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  color: #2C3E50;
  line-height: 1.25;
}
.cabinet_welcome_subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(44, 62, 80, 0.88);
  max-width: 40em;
}
.cabinet_welcome_steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cabinet_welcome_step {
  margin: 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(83, 58, 113, 0.1);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.cabinet_welcome_step--done {
  border-color: rgba(76, 217, 100, 0.45);
  box-shadow: 0 0 0 1px rgba(76, 217, 100, 0.12);
  background: rgba(76, 217, 100, 0.06);
}
.cabinet_welcome_step_label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  margin: 0;
}
.cabinet_welcome_checkbox {
  width: 22px;
  height: 22px;
  margin: 2px 0 0;
  flex-shrink: 0;
  accent-color: #369A46;
  cursor: pointer;
}
.cabinet_welcome_checkbox:disabled {
  cursor: default;
  opacity: 1;
}
.cabinet_welcome_step_text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cabinet_welcome_step_title {
  font-weight: 700;
  font-size: 16px;
  color: #2C3E50;
}
.cabinet_welcome_step_desc {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(44, 62, 80, 0.82);
}
.cabinet_welcome_done {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #1b5e20;
  background: rgba(76, 217, 100, 0.14);
  border: 1px solid rgba(76, 217, 100, 0.28);
}
.cabinet_welcome_dismiss {
  margin-top: 14px;
  padding: 8px 14px;
  font-size: 13px;
  font-family: Montserrat, sans-serif;
  color: rgba(44, 62, 80, 0.75);
  background: transparent;
  border: 1px solid rgba(83, 58, 113, 0.2);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.cabinet_welcome_dismiss:hover {
  background: rgba(83, 58, 113, 0.06);
  border-color: rgba(83, 58, 113, 0.35);
}
.cabinet_welcome_aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(83, 58, 113, 0.06);
  border: 1px solid rgba(83, 58, 113, 0.12);
}
@media (max-width: 720px) {
  .cabinet_welcome_aside {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}
.cabinet_welcome_aside_title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(44, 62, 80, 0.55);
  margin: 0 0 4px;
  width: 100%;
}
.cabinet_welcome_link {
  text-align: center;
  text-decoration: none;
  width: 100%;
  justify-content: center;
}
@media (max-width: 720px) {
  .cabinet_welcome_link {
    width: auto;
    flex: 1 1 auto;
    min-width: 140px;
  }
}
.cabinet_welcome_link--premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  color: #1a1a1a;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd54f 0%, #ffb300 100%);
  box-shadow: 0 4px 14px rgba(255, 179, 0, 0.35);
  border-bottom: none;
  max-width: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cabinet_welcome_link--premium:hover {
  color: #1a1a1a;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 179, 0, 0.45);
}

.dashboard {
  padding: 0;
  display: flex;
  flex-direction: column;
}
.dashboard_block {
  margin: 0 0 50px;
}
.dashboard_row {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.dashboard_row_btns {
  display: flex;
  gap: 30px;
}
@media (max-width: 480px) {
  .dashboard_row_btns {
    flex-wrap: wrap;
  }
}
.dashboard h3 {
  margin: 0 0 20px;
  color: #2C3E50;
}
.dashboard h4 {
  color: #2C3E50;
}

.user_cap_row {
  display: flex;
  width: 600px;
  border-bottom: 1px solid #6184D8;
  align-items: center;
  padding: 10px 0;
}
@media (max-width: 640px) {
  .user_cap_row {
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    margin: 0 0 20px;
  }
}
.user_cap_row .user_cap_title {
  width: 70%;
}
@media (max-width: 640px) {
  .user_cap_row .user_cap_title {
    width: 100%;
  }
}
.user_cap_row .user_cap_delete {
  width: 30%;
}
@media (max-width: 640px) {
  .user_cap_row .user_cap_delete {
    width: 100%;
  }
}

.cabinet_link {
  color: #6184D8;
  text-decoration: underline;
}
.cabinet_link:hover {
  text-decoration: none;
}

.daybooster_input {
  padding: 10px 10px;
  border-radius: 5px;
  border: 1px solid #eee;
  outline: none;
  width: 100%;
  font-family: "Montserrat", sans-serif;
}
.daybooster_input:focus {
  border-color: #533A71;
}

.cabinet_settings {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cabinet_settings--tabs {
  gap: 20px;
}
.cabinet_settings--tabs .cabinet_settings_tabs_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 4px 0 12px;
  border-bottom: 1px solid rgba(83, 58, 113, 0.12);
  margin-bottom: 4px;
}
.cabinet_settings--tabs .cabinet_settings_tab {
  appearance: none;
  border: 1px solid rgba(83, 58, 113, 0.2);
  background: rgba(255, 255, 255, 0.85);
  color: #2C3E50;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.cabinet_settings--tabs .cabinet_settings_tab[aria-selected=true] {
  background: linear-gradient(135deg, #9e6eff 0%, #8c53ff 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(140, 83, 255, 0.35);
}
.cabinet_settings--tabs .cabinet_settings_tab:focus-visible {
  outline: 2px solid #533A71;
  outline-offset: 2px;
}
.cabinet_settings--tabs .cabinet_settings_tabpanels {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cabinet_settings--tabs .cabinet_settings_tabpanel {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cabinet_settings--tabs .cabinet_settings_tabpanel[hidden] {
  display: none !important;
}
.cabinet_settings .settings_shop_account__muted {
  color: #888;
  margin: 0;
  font-size: 14px;
}
.cabinet_settings .settings_shop_account__hint {
  font-size: 13px;
  color: #2C3E50;
  margin: 12px 0 0;
}
.cabinet_settings .settings_shop_account__hint a {
  color: #533A71;
  text-decoration: underline;
}
.cabinet_settings .settings_shop_account__table_wrap {
  overflow-x: auto;
  margin-top: 8px;
  -webkit-overflow-scrolling: touch;
}
.cabinet_settings .settings_shop_account__table {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
  font-size: 14px;
}
.cabinet_settings .settings_shop_account__table th, .cabinet_settings .settings_shop_account__table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(83, 58, 113, 0.12);
  vertical-align: top;
}
.cabinet_settings .settings_shop_account__table th {
  font-weight: 600;
  color: #2C3E50;
  font-size: 13px;
}
.cabinet_settings .settings_shop_account__table tbody tr:last-child td {
  border-bottom: none;
}
.cabinet_settings .settings_shop_account__table a {
  color: #533A71;
}
.cabinet_settings .settings_shop_account__subs, .cabinet_settings .settings_shop_account__pay {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}
.cabinet_settings .settings_shop_account__sub_row, .cabinet_settings .settings_shop_account__pay_row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(83, 58, 113, 0.1);
}
.cabinet_settings .settings_shop_account__sub_row:last-child, .cabinet_settings .settings_shop_account__pay_row:last-child {
  border-bottom: none;
}
.cabinet_settings .settings_shop_account__sub_main {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cabinet_settings .settings_shop_account__sub_status, .cabinet_settings .settings_shop_account__sub_next {
  font-size: 13px;
  color: #2C3E50;
}
.cabinet_settings .settings_shop_account__sub_btn {
  max-width: none !important;
  padding: 10px 16px !important;
  font-size: 13px !important;
  width: auto;
}
.cabinet_settings .settings_shop_account__pay_label {
  font-weight: 500;
}
.cabinet_settings .settings_shop_account__pay_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}
.cabinet_settings .settings_shop_account__pay_actions a {
  color: #533A71;
  text-decoration: underline;
}
.cabinet_settings .settings_shop_account__pay_delete {
  color: #c62828 !important;
}
.cabinet_settings .settings_block {
  position: relative;
}
.cabinet_settings .settings_block:not(.settings_account_delete) {
  padding: 22px 22px 26px 26px;
  border-radius: 16px;
  border: 1px solid rgba(83, 58, 113, 0.14);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 246, 255, 0.9) 48%, rgba(255, 253, 250, 0.85) 100%);
  box-shadow: 0 4px 22px rgba(83, 58, 113, 0.07), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  overflow: hidden;
}
.cabinet_settings .settings_block:not(.settings_account_delete)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 4px 0 0 4px;
  background: linear-gradient(180deg, #9e6eff 0%, #8c53ff 45%, #533a71 100%);
}
.cabinet_settings .settings_block .dashboard_row + .dashboard_row {
  margin-top: 24px;
}
.cabinet_settings .settings_block > h3:first-child {
  margin-top: 0;
}
.cabinet_settings h3 {
  color: #2C3E50;
  margin: 0 0 20px;
}
.cabinet_settings_title {
  font-size: 18px;
  margin: 0 0 20px;
}
.cabinet_settings_form {
  width: 100%;
}
.cabinet_settings_form form {
  width: 100%;
  display: flex;
  gap: 40px;
}
@media (max-width: 640px) {
  .cabinet_settings_form form {
    flex-wrap: wrap;
  }
}
.cabinet_settings_form .form_col {
  width: 50%;
  display: inline-flex;
  gap: 40px;
  flex-direction: column;
}
@media (max-width: 640px) {
  .cabinet_settings_form .form_col {
    width: 100%;
  }
}
.cabinet_settings .user_cap_rows {
  margin: 0 0 20px;
}
.cabinet_settings .input_wrap {
  position: relative;
  width: 100%;
}
.cabinet_settings .input_wrap input {
  width: 100%;
  padding: 10px 10px;
  font-size: 16px;
  pointer-events: none;
  opacity: 0.5;
  font-family: Montserrat, sans-serif;
}
.cabinet_settings .input_wrap input[type=file] {
  opacity: 1;
  pointer-events: auto;
  padding: 0;
}
.cabinet_settings .input_wrap .input_change {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  height: 100%;
  width: 40px;
  background: center center #EDEDED no-repeat;
  background-size: 50% 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath d='M20.1498 7.93997L8.27978 19.81C7.21978 20.88 4.04977 21.3699 3.32977 20.6599C2.60977 19.9499 3.11978 16.78 4.17978 15.71L16.0498 3.84C16.5979 3.31801 17.3283 3.03097 18.0851 3.04019C18.842 3.04942 19.5652 3.35418 20.1004 3.88938C20.6356 4.42457 20.9403 5.14781 20.9496 5.90463C20.9588 6.66146 20.6718 7.39189 20.1498 7.93997V7.93997Z' stroke='%23ACACAC' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}
.cabinet_settings .input_wrap .input_change:hover {
  opacity: 0.8;
}
.cabinet_settings .input_wrap.edit input {
  pointer-events: auto;
  opacity: 1;
}
.cabinet_settings .input_wrap.edit .input_change {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg fill='%234CD964' viewBox='0 0 14 14' role='img' focusable='false' aria-hidden='true' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath d='m 13,4.1974 q 0,0.3097 -0.21677,0.5265 l -5.60517,5.6051 -1.0529,1.0529 q -0.21677,0.2168 -0.52645,0.2168 -0.30968,0 -0.52645,-0.2168 L 4.01935,10.329 1.21677,7.5264 Q 1,7.3097 1,7 1,6.6903 1.21677,6.4735 L 2.26968,5.4206 q 0.21677,-0.2167 0.52645,-0.2167 0.30968,0 0.52645,0.2167 l 2.27613,2.2839 5.07871,-5.0864 q 0.21677,-0.2168 0.52645,-0.2168 0.30968,0 0.52645,0.2168 L 12.78323,3.671 Q 13,3.8877 13,4.1974 z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}
.cabinet_settings .input_title {
  font-weight: 600;
  margin: 0 0 10px;
}
.cabinet_settings .input_hint {
  font-size: 13px;
  color: #2C3E50;
  margin-top: 8px;
}
.cabinet_settings .input_hint a {
  color: #533A71;
  text-decoration: underline;
}
.cabinet_settings .input_toggle {
  height: 100%;
  width: 40px;
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  background: #ddd;
}
.cabinet_settings .daybooster_submit {
  outline: none;
  cursor: pointer;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: Montserrat, sans-serif;
}
.cabinet_settings .filepond--root {
  margin: 0;
}
.cabinet_settings .checkbox_row {
  display: flex;
  gap: 10px;
  margin: 0 0 10px;
}
.cabinet_settings .checkbox_row input {
  width: auto;
  opacity: 1;
}
.cabinet_settings {
  /* Premium: ежедневные рассылки в мессенджеры (настройки кабинета) */
}
.cabinet_settings .settings_premium_digest {
  margin: 8px 0 12px;
  padding: 18px 20px 20px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 179, 0, 0.32);
  background: linear-gradient(135deg, rgba(255, 213, 79, 0.14) 0%, rgba(255, 179, 0, 0.07) 42%, rgba(83, 58, 113, 0.08) 100%);
  box-shadow: 0 6px 24px rgba(83, 58, 113, 0.08);
  position: relative;
  overflow: hidden;
}
.cabinet_settings .settings_premium_digest::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 4px 0 0 4px;
  background: linear-gradient(180deg, #ffd54f 0%, #ffb300 55%, #533A71 100%);
}
.cabinet_settings .settings_premium_digest_head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 10px;
}
.cabinet_settings .settings_premium_digest_lead {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.5;
  color: #2C3E50;
  max-width: 42em;
}
.cabinet_settings .settings_premium_digest_channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
}
@media (max-width: 640px) {
  .cabinet_settings .settings_premium_digest_channels {
    grid-template-columns: 1fr;
  }
}
.cabinet_settings .settings_premium_digest_channel {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(83, 58, 113, 0.12);
  box-shadow: 0 2px 10px rgba(18, 23, 38, 0.04);
}
.cabinet_settings .settings_premium_digest_channel .input_title {
  margin-bottom: 8px;
}
.cabinet_settings .settings_premium_digest_foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.cabinet_settings .settings_premium_digest_hint {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #2C3E50;
  max-width: 36em;
}
.cabinet_settings .settings_premium_digest_status {
  font-size: 13px;
  font-weight: 600;
  color: #2e7d32;
}
.cabinet_settings .settings_premium_digest_status--muted {
  color: rgba(44, 62, 80, 0.85);
  font-weight: 500;
}
.cabinet_settings .settings_premium_digest--unlocked {
  border-color: rgba(76, 217, 100, 0.38);
  background: linear-gradient(135deg, rgba(76, 217, 100, 0.12) 0%, rgba(83, 58, 113, 0.06) 100%);
  box-shadow: 0 6px 24px rgba(76, 217, 100, 0.1);
}
.cabinet_settings .settings_premium_digest--unlocked::before {
  background: linear-gradient(180deg, #4CD964 0%, #369A46 45%, #533A71 100%);
}
.cabinet_settings .settings_premium_digest--unlocked .settings_premium_digest_channel {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(76, 217, 100, 0.2);
}
.cabinet_settings .settings_premium_digest_badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: linear-gradient(135deg, #ffd54f 0%, #ffb300 100%);
  border-radius: 999px;
  line-height: 1.2;
  box-shadow: 0 2px 8px rgba(255, 179, 0, 0.35);
}
.cabinet_settings .settings_premium_digest_badge--inline {
  font-size: 9px;
  padding: 4px 10px;
  letter-spacing: 0.08em;
  box-shadow: 0 1px 6px rgba(255, 179, 0, 0.28);
  vertical-align: middle;
}
.cabinet_settings .settings_premium_digest--unlocked .settings_premium_digest_badge {
  background: linear-gradient(135deg, #4CD964 0%, #369A46 100%);
  color: #fff;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 8px rgba(54, 154, 70, 0.35);
}
.cabinet_settings .settings_premium_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  font-size: 15px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd54f 0%, #ffb300 100%);
  box-shadow: 0 4px 18px rgba(255, 179, 0, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cabinet_settings .settings_premium_btn:hover {
  color: #1a1a1a;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(255, 179, 0, 0.5);
}
.cabinet_settings .dashboard_row_title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 0 0 12px;
}
.cabinet_settings .dashboard_row--premium-messenger {
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(83, 58, 113, 0.12);
  background: linear-gradient(135deg, rgba(83, 58, 113, 0.05) 0%, rgba(255, 213, 79, 0.06) 100%);
  margin-top: 4px;
}
.cabinet_settings .dashboard_row--premium-messenger .content {
  margin-bottom: 12px;
}
.cabinet_settings .dashboard_row_btns--premium {
  margin-top: 4px;
}
.cabinet_settings {
  /* Удаление аккаунта (настройки кабинета) */
}
.cabinet_settings .settings_account_delete {
  padding: 20px 22px 22px;
  margin-top: 8px;
  border-radius: 16px;
  border: 1px solid rgba(211, 47, 47, 0.22);
  background: linear-gradient(145deg, rgba(211, 47, 47, 0.06) 0%, rgba(255, 255, 255, 0.92) 55%);
  box-shadow: 0 6px 22px rgba(211, 47, 47, 0.06);
  position: relative;
  overflow: hidden;
}
.cabinet_settings .settings_account_delete::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 4px 0 0 4px;
  background: linear-gradient(180deg, #e53935 0%, #c62828 100%);
}
.cabinet_settings .settings_account_delete h3 {
  color: #b71c1c;
  margin-bottom: 12px;
}
.cabinet_settings .settings_account_delete__lead {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.55;
  color: #2C3E50;
  max-width: 46em;
}
.cabinet_settings .settings_account_delete__list {
  margin: 0 0 18px;
  padding-left: 1.2em;
  font-size: 14px;
  line-height: 1.55;
  color: #444;
}
.cabinet_settings .settings_account_delete__list li {
  margin-bottom: 8px;
}
.cabinet_settings .settings_account_delete__legal {
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(83, 58, 113, 0.12);
  font-size: 13px;
  line-height: 1.5;
  color: #2C3E50;
}
.cabinet_settings .settings_account_delete__legal p {
  margin: 0 0 10px;
}
.cabinet_settings .settings_account_delete__legal p:last-child {
  margin-bottom: 0;
}
.cabinet_settings .settings_account_delete__legal strong {
  display: block;
  margin-bottom: 6px;
  color: #333;
}
.cabinet_settings .settings_account_delete__form {
  margin-top: 4px;
}
.cabinet_settings .settings_account_delete__form p {
  margin: 0 0 14px;
}
.cabinet_settings .settings_account_delete__form label[for=daybooster_delete_account_password] {
  font-weight: 600;
  font-size: 14px;
  color: #2C3E50;
}
.cabinet_settings .settings_account_delete__form .regular-text {
  margin-top: 8px;
  width: 100%;
  max-width: 320px;
  padding: 10px 12px;
  font-size: 15px;
  font-family: Montserrat, sans-serif;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.cabinet_settings .settings_account_delete__form .regular-text:focus {
  border-color: #533A71;
  outline: none;
  box-shadow: 0 0 0 2px rgba(140, 83, 255, 0.15);
}
.cabinet_settings .settings_account_delete__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.45;
  color: #333;
}
.cabinet_settings .settings_account_delete__check input {
  margin: 4px 0 0;
  flex-shrink: 0;
  width: auto;
  accent-color: #c62828;
}
.cabinet_settings .settings_account_delete__hint {
  margin: -4px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(44, 62, 80, 0.92);
  max-width: 40em;
}
.cabinet_settings .settings_account_delete_notice {
  margin-bottom: 0;
}

.daybooster-account-deleted-banner {
  margin: 1rem auto;
  max-width: 720px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #1b5e20;
  box-shadow: 0 4px 18px rgba(27, 94, 32, 0.08);
}

.capability_cards_grid {
  display: flex;
  gap: 24px;
  row-gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 1024px) {
  .capability_cards_grid {
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .capability_cards_grid {
    gap: 20px;
  }
}
.capability_cards_grid .capability_card {
  width: 32%;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #E0E1E7;
  padding: 18px 18px 20px;
  gap: 16px;
  position: relative;
  background: #ffffff;
  color: #26252E;
  box-shadow: 0 10px 30px rgba(18, 23, 38, 0.06);
  opacity: 0.7;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
}
.capability_cards_grid .capability_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(18, 23, 38, 0.16);
  border-color: rgba(111, 66, 193, 0.35);
}
@media (max-width: 1024px) {
  .capability_cards_grid .capability_card {
    width: 49%;
    margin: 0 0 20px;
  }
}
@media (max-width: 640px) {
  .capability_cards_grid .capability_card {
    width: 100%;
  }
}
.capability_cards_grid .capability_card_image {
  position: relative;
  border-radius: 16px;
  height: 200px;
  overflow: hidden;
}
.capability_cards_grid .capability_card_image .author_program_badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  max-width: calc(100% - 20px);
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, #6c5ce7 0%, #8b5cf6 100%);
  box-shadow: 0 4px 12px rgba(44, 24, 88, 0.35);
}
.capability_cards_grid .capability_card_image img {
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  display: block;
}
.capability_cards_grid .capability_card_info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.capability_cards_grid .capability_card_title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}
.capability_cards_grid .capability_card_meta {
  display: flex;
  gap: 10px;
  font-size: 14px;
  align-items: center;
}
.capability_cards_grid .capability_card_meta_title {
  font-weight: 500;
}
.capability_cards_grid .capability_card_meta_value {
  font-weight: 700;
}
.capability_cards_grid .capability_card .access_badge {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 11;
  padding: 8px 14px 9px;
  max-width: calc(100% - 56px);
  border-radius: 0 0 18px 0;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 6px 16px rgba(18, 23, 38, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-top: 0;
  border-left: 0;
}
.capability_cards_grid .capability_card .access_badge.free {
  background: linear-gradient(135deg, #3ecf9a 0%, #1fa87a 55%, #178f6c 100%);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}
.capability_cards_grid .capability_card .access_badge.premium {
  background: linear-gradient(135deg, #ffe082 0%, #ffc107 45%, #e6a000 100%);
  color: #3a2b00;
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 6px 18px rgba(180, 120, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.65);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}
.capability_cards_grid .capability_card .soon_badge {
  position: absolute;
  left: 0;
  top: 0;
  padding: 10px 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 20px 0 20px 0;
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 14px;
  z-index: 11;
}
.capability_cards_grid .capability_card .new_badge {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 12;
  padding: 7px 14px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: #fff;
  text-transform: none;
  background: linear-gradient(135deg, #ff5e8a 0%, #ff2d6b 42%, #e01e5a 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 16px rgba(224, 30, 90, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}
.capability_cards_grid .capability_card .capability_level_badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 4;
  max-width: calc(100% - 24px);
  padding: 6px 12px 7px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 4px 14px rgba(18, 23, 38, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
  pointer-events: none;
}
.capability_cards_grid .capability_card .capability_level_badge.capability_level_badge--tier-1 {
  background: linear-gradient(135deg, #6eceb9 0%, #3da894 52%, #2e8f7c 100%);
}
.capability_cards_grid .capability_card .capability_level_badge.capability_level_badge--tier-2 {
  background: linear-gradient(135deg, #9b8cff 0%, #6f52e8 45%, #533a9e 100%);
}
.capability_cards_grid .capability_card .capability_level_badge.capability_level_badge--tier-3 {
  background: linear-gradient(135deg, #ffb088 0%, #ff7a4a 38%, #e4562a 100%);
  border-color: rgba(255, 240, 220, 0.45);
  box-shadow: 0 6px 18px rgba(228, 86, 42, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.capability_cards_grid .capability_card .capability_level_badge.capability_level_badge--tier-4 {
  background: linear-gradient(135deg, #ffe566 0%, #ffb84d 22%, #ff7ad9 48%, #6fe8ff 78%, #c4a5ff 100%);
  color: #1a1028;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 8px 26px rgba(255, 184, 77, 0.45), 0 0 24px rgba(111, 232, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.capability_cards_grid .capability_card .capability_level_badge.capability_level_badge--tier-0 {
  background: linear-gradient(135deg, #9aa3b2 0%, #6b7280 100%);
  text-transform: none;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.capability_cards_grid .capability_card_results {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.capability_cards_grid .capability_card_results .item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.capability_cards_grid .capability_card.sidebar {
  padding: 12px 12px;
  gap: 12px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(18, 23, 38, 0.08);
  opacity: 1;
}
.capability_cards_grid .capability_card.sidebar .capability_card_image {
  height: 90px;
  margin-bottom: 4px;
}
.capability_cards_grid .capability_card.sidebar .capability_card_image .author_program_badge {
  left: 6px;
  bottom: 6px;
  padding: 4px 8px;
  font-size: 9px;
  border-radius: 8px;
}
.capability_cards_grid .capability_card.sidebar .capability_card_image img {
  border-radius: 14px;
}
.capability_cards_grid .capability_card.sidebar .capability_card_title {
  font-size: 14px;
  font-weight: 600;
}
.capability_cards_grid .capability_card.sidebar .capability_card_meta {
  display: none;
}
.capability_cards_grid .capability_card.sidebar .capability_card_results {
  display: none;
}
.capability_cards_grid .capability_card.sidebar .access_badge,
.capability_cards_grid .capability_card.sidebar .soon_badge {
  font-size: 9px;
  padding: 5px 9px 6px;
  letter-spacing: 0.07em;
  border-radius: 0 0 12px 0;
}
.capability_cards_grid .capability_card.sidebar .new_badge {
  right: 6px;
  top: 6px;
  padding: 4px 9px 5px;
  font-size: 9px;
  letter-spacing: 0.03em;
}
.capability_cards_grid .capability_card.sidebar .capability_level_badge {
  right: 6px;
  bottom: 6px;
  padding: 4px 8px 5px;
  font-size: 8px;
  letter-spacing: 0.06em;
  max-width: calc(100% - 16px);
}
.capability_cards_grid .capability_card.premium {
  border: 2px solid transparent;
  background: linear-gradient(168deg, #fffef9 0%, #ffffff 42%, #f9f6ff 100%) padding-box, linear-gradient(135deg, #d4af37 0%, #f0e6c8 18%, #b8860b 38%, #9b6bff 58%, #c9a227 78%, #e8d48a 100%) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 14px 44px rgba(74, 52, 16, 0.1), 0 6px 20px rgba(104, 80, 180, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.capability_cards_grid .capability_card.premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 56px rgba(74, 52, 16, 0.14), 0 10px 28px rgba(104, 80, 180, 0.12), inset 0 1px 0 rgb(255, 255, 255);
}
.capability_cards_grid .capability_card.premium .capability_card_image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
  background: linear-gradient(165deg, rgba(255, 248, 220, 0.22) 0%, transparent 50%, rgba(120, 90, 200, 0.06) 100%);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.28);
}
.capability_cards_grid .capability_card.sidebar.premium .capability_card_image::after {
  border-radius: 14px;
}
.capability_cards_grid .capability_card.active {
  opacity: 1;
}
.capability_cards_grid .capability_card--lvl-1 {
  box-shadow: 0 10px 30px rgba(18, 23, 38, 0.06), 0 0 0 1px rgba(80, 197, 183, 0.22);
}
.capability_cards_grid .capability_card--lvl-1::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, #50c5b7 0%, #7dddcf 100%);
  z-index: 6;
  pointer-events: none;
}
.capability_cards_grid .capability_card--lvl-1:hover {
  box-shadow: 0 14px 40px rgba(80, 197, 183, 0.14), 0 0 0 1px rgba(80, 197, 183, 0.35);
}
.capability_cards_grid .capability_card--lvl-2 {
  box-shadow: 0 12px 34px rgba(111, 66, 193, 0.1), 0 0 0 1px rgba(111, 66, 193, 0.28);
}
.capability_cards_grid .capability_card--lvl-2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, #8b7bff 0%, #6f42c1 50%, #9b7bed 100%);
  z-index: 6;
  pointer-events: none;
  box-shadow: 0 2px 12px rgba(111, 66, 193, 0.35);
}
.capability_cards_grid .capability_card--lvl-2:hover {
  box-shadow: 0 16px 44px rgba(111, 66, 193, 0.16), 0 0 0 1px rgba(111, 66, 193, 0.42);
}
.capability_cards_grid .capability_card--lvl-3 {
  box-shadow: 0 14px 42px rgba(228, 86, 42, 0.12), 0 0 0 1px rgba(255, 138, 92, 0.35), 0 0 28px rgba(111, 66, 193, 0.08);
}
.capability_cards_grid .capability_card--lvl-3::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, #ff9a5c 0%, #ff5c7c 35%, #8c53ff 68%, #50c5b7 100%);
  z-index: 6;
  pointer-events: none;
  box-shadow: 0 0 18px rgba(255, 122, 92, 0.45);
}
.capability_cards_grid .capability_card--lvl-3:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 52px rgba(228, 86, 42, 0.16), 0 0 0 1px rgba(255, 138, 92, 0.45), 0 0 36px rgba(140, 83, 255, 0.12);
}
.capability_cards_grid .capability_card--lvl-4 {
  box-shadow: 0 18px 52px rgba(140, 83, 255, 0.14), 0 0 0 1px rgba(255, 214, 102, 0.45), 0 0 40px rgba(111, 232, 255, 0.15), 0 0 60px rgba(255, 122, 200, 0.08);
}
.capability_cards_grid .capability_card--lvl-4::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, #ffd666 0%, #ff9fe8 22%, #7cf0ff 48%, #b794f6 72%, #ffd666 100%);
  background-size: 200% 100%;
  z-index: 6;
  pointer-events: none;
  box-shadow: 0 0 24px rgba(255, 214, 102, 0.55), 0 0 40px rgba(124, 240, 255, 0.25);
}
.capability_cards_grid .capability_card--lvl-4:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(140, 83, 255, 0.18), 0 0 0 1px rgba(255, 214, 102, 0.55), 0 0 48px rgba(111, 232, 255, 0.22), 0 0 72px rgba(255, 150, 210, 0.12);
}
.capability_cards_grid .capability_card--lvl-custom::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, #94a3b8 0%, #64748b 100%);
  z-index: 6;
  pointer-events: none;
}
.capability_cards_grid.sidebar .capability_card {
  width: 100%;
}
.capability_cards_grid.page .capability_card {
  width: 31%;
}
@media (max-width: 1024px) {
  .capability_cards_grid.page .capability_card {
    width: 48%;
  }
}
@media (max-width: 640px) {
  .capability_cards_grid.page .capability_card {
    width: 100%;
  }
}

.create_capability_title {
  font-size: 26px;
  font-weight: 600;
  color: #26252E;
  margin: 0 0 24px;
  line-height: 1.3;
}

/* Страница Create: премиум-программа без активной подписки */
.create_premium_gate .create_capability_title {
  margin-bottom: 16px;
}

.create_premium_required {
  max-width: 520px;
  padding: 22px 22px 24px 26px;
  border-radius: 20px;
  border: 1px solid #eceaf8;
  background: radial-gradient(520px 120px at 12% -20%, rgba(140, 83, 255, 0.14) 0%, rgba(140, 83, 255, 0) 55%), #fff;
  box-shadow: 0 14px 40px rgba(18, 23, 38, 0.08);
  position: relative;
  overflow: hidden;
}
.create_premium_required::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  border-radius: 20px 0 0 20px;
  background: linear-gradient(180deg, #8c53ff 0%, rgba(108, 64, 196, 0.85) 100%);
}
.create_premium_required__lead {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  color: #26252E;
}
.create_premium_required__lead::before {
  content: "";
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  margin-top: 2px;
  border-radius: 10px;
  background: rgba(140, 83, 255, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238c53ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px 15px;
}
.create_premium_required__hint {
  margin: 0 0 20px;
  padding-left: 38px;
  font-size: 14px;
  line-height: 1.55;
  color: #6b6978;
}
.create_premium_required__cta {
  margin-left: 38px;
  text-decoration: none;
  border-bottom: 0;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 14px;
}

/* Верхний блок страницы «Создать календарь»: опрос или «уже развиваете направление» */
.create_top_block {
  margin-bottom: 32px;
}

.cabinet_info.create_info_card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 14px 40px rgba(18, 23, 38, 0.08);
  border: 1px solid #eceaf8;
  max-width: 520px;
  position: relative;
  overflow: hidden;
}
.cabinet_info.create_info_card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, rgba(255, 58, 45, 0.95) 0%, rgba(255, 140, 0, 0.75) 100%);
}
.cabinet_info.create_info_card .cabinet_info_title {
  font-size: 18px;
  font-weight: 600;
  color: #26252E;
  margin: 0 0 20px;
  line-height: 1.4;
  padding-left: 32px;
  position: relative;
}
.cabinet_info.create_info_card .cabinet_info_title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: rgba(255, 58, 45, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff3a2d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 9v4'/%3E%3Cpath d='M12 17h.01'/%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}
.cabinet_info.create_info_card .daybooster_btn.remove_single {
  display: block;
  margin-top: 10px;
  max-width: 100%;
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 0;
  background: rgba(255, 58, 45, 0.12);
  color: #b42318;
  box-shadow: none;
  border: 1px solid rgba(255, 58, 45, 0.28);
}
.cabinet_info.create_info_card .daybooster_btn.remove_single:hover {
  background: rgba(255, 58, 45, 0.16);
}
.cabinet_info.create_info_card .daybooster_btn.remove_single:focus {
  background: rgba(255, 58, 45, 0.2);
}
.cabinet_info.create_info_card .cabinet_info_message {
  font-size: 16px;
  color: #555;
  margin: 0;
}

.questions_form.create_form_card {
  padding: 0;
  margin: 0;
}

/* Блок информации о направлении и контентные блоки на странице создания календаря */
.create_capability_direction_blocks {
  margin-bottom: 32px;
}
.create_capability_direction_blocks .capability_block {
  margin-bottom: 24px;
}
.create_capability_direction_blocks .capability_block ul {
  margin: 20px 0;
}
.create_capability_direction_blocks .capability_direction_info .capability_block_inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.create_capability_direction_blocks .create_direction_item {
  margin: 0;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(140, 83, 255, 0.18);
  background: linear-gradient(145deg, rgba(140, 83, 255, 0.07) 0%, rgba(255, 255, 255, 0.65) 100%);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.create_capability_direction_blocks .create_direction_item:hover {
  border-color: rgba(140, 83, 255, 0.32);
  box-shadow: 0 10px 28px rgba(140, 83, 255, 0.12);
  background: linear-gradient(145deg, rgba(140, 83, 255, 0.1) 0%, #fff 100%);
}
.create_capability_direction_blocks .create_direction_item a {
  display: inline-block;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: #8c53ff;
  text-decoration: none;
}
.create_capability_direction_blocks .create_direction_item a:hover {
  color: #6c40c4;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.create_capability_direction_blocks .create_direction_desc {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(140, 83, 255, 0.14);
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}
.create_capability_direction_blocks .create_direction_desc p {
  margin: 0 0 8px;
}
.create_capability_direction_blocks .create_direction_desc p:last-child {
  margin-bottom: 0;
}

html.theme-dark .create_capability_direction_blocks .create_direction_item {
  border-color: rgba(140, 83, 255, 0.22);
  background: linear-gradient(145deg, rgba(140, 83, 255, 0.12) 0%, rgba(31, 32, 40, 0.98) 100%);
  box-shadow: none;
}
html.theme-dark .create_capability_direction_blocks .create_direction_item:hover {
  border-color: rgba(184, 160, 255, 0.35);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  background: linear-gradient(145deg, rgba(140, 83, 255, 0.16) 0%, #25262e 100%);
}
html.theme-dark .create_capability_direction_blocks .create_direction_item a {
  color: #b8a0ff;
}
html.theme-dark .create_capability_direction_blocks .create_direction_item a:hover {
  color: #d4c4ff;
}
html.theme-dark .create_capability_direction_blocks .create_direction_desc {
  border-top-color: rgba(255, 255, 255, 0.08);
  color: #a8a8b8;
}

.questions_form {
  padding: 20px 0;
  max-width: 520px;
}
.questions_form #questions_form {
  margin: 0;
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px 36px;
  box-shadow: 0 14px 40px rgba(18, 23, 38, 0.08);
  border: 1px solid #eceaf8;
}
.questions_form #questions_form .step {
  display: none;
}
.questions_form #questions_form .step.active {
  display: block;
}
.questions_form #questions_form .step_inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.questions_form #questions_form .step_title {
  font-size: 20px;
  font-weight: 600;
  color: #26252E;
  line-height: 1.35;
  margin: 0;
}
.questions_form #questions_form .step_answers label {
  display: block;
}
.questions_form #questions_form .step_note {
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.35;
  border: 1px solid rgba(111, 66, 193, 0.22);
  background: rgba(111, 66, 193, 0.08);
  color: #2c2c35;
}
.questions_form #questions_form .step_note strong {
  font-weight: 700;
}
.questions_form #questions_form .step_note--warning {
  border-color: rgba(255, 140, 0, 0.28);
  background: rgba(255, 140, 0, 0.1);
}
.questions_form #questions_form .step_buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.questions_form #questions_form .step_buttons .daybooster_btn {
  min-width: 120px;
  text-align: center;
  padding: 12px 20px;
}
.questions_form #questions_form .step_buttons .send_daybooster.is-busy {
  pointer-events: none;
  opacity: 0.55;
  cursor: wait;
}
.questions_form #questions_form .step_btn {
  padding: 10px;
}
.questions_form #questions_form .step input.daybooster_input {
  max-width: 100%;
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #d7d5f5;
  font-size: 15px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.questions_form #questions_form .step input.daybooster_input:focus {
  border-color: #8C53FF;
  box-shadow: 0 0 0 2px rgba(140, 83, 255, 0.2);
  outline: none;
}

.step_response {
  margin-top: 24px;
  background: #f7f6ff;
  border-radius: 16px;
  padding: 20px 24px;
  border: 1px solid #e4e2ff;
  display: none;
}
.step_response_inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step_response_item {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}
.step_response_item--error {
  color: #b42318;
  font-weight: 600;
}
.step_response_item.step_response_redirect {
  color: #3d5a00;
  font-weight: 600;
}
.step_response_subtitle {
  font-weight: 600;
  color: #26252E;
}

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

.response_wrap {
  margin: 0 0 50px;
}

.fc-event {
  cursor: pointer;
}

.text h1, .text h2, .text h3, .text h4, .text h5, .text h6 {
  margin: 20px 0;
  line-height: 26px;
}
.text p {
  margin: 0 0 20px;
  line-height: 26px;
}
.text ul, .text ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 0 0 20px;
  margin: 20px 0;
}
.text li {
  line-height: 26px;
}

.woocommerce-page .single {
  padding: 50px 15px 0;
}

.single .wrapper {
  margin: 0 auto;
}
.single {
  padding: 100px 0 0;
}
.single .single_hero {
  height: 600px;
  background: no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  position: relative;
  margin: 0 0 20px;
}
@media (max-width: 640px) {
  .single .single_hero {
    height: 300px;
  }
}
.single .single_hero:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.single .single_hero .single_hero_content {
  position: relative;
  z-index: 11;
  padding: 40px 40px;
  margin: 0;
}
@media (max-width: 640px) {
  .single .single_hero .single_hero_content {
    padding: 20px 20px;
  }
}
.single .single_hero .single_hero_title {
  font-size: 40px;
  line-height: 1.4;
  color: #fff;
  font-weight: bold;
  position: relative;
  padding: 0 0 0 20px;
  margin: 0;
}
.single .single_hero .single_hero_title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 10px;
  background: #9E52FF;
}
@media (max-width: 640px) {
  .single .single_hero .single_hero_title {
    font-size: 24px;
  }
  .single .single_hero .single_hero_title:before {
    width: 5px;
  }
}
.single .single_info {
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid #ccc;
}
.single .single_date {
  margin: 0 0 20px;
  color: #999;
}
.single .single_meta {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 640px) {
  .single .single_meta {
    flex-wrap: wrap;
  }
}
.single .single_author {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 640px) {
  .single .single_author {
    margin: 0 0 20px;
  }
}
.single .single_author_image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.single .single_author_name {
  font-weight: 600;
  margin: 0 0 10px;
}
.single .single_author_state {
  font-size: 14px;
  color: #2C3E50;
}
.single .blog_grid_item_category {
  position: static;
}
.single .single_content {
  padding: 0 0 20px;
  margin: 0 0 40px;
  border-bottom: 1px solid #ccc;
}
.single .single_content a {
  color: #5e46d6;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.14em;
  text-decoration-color: rgba(94, 70, 214, 0.45);
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
.single .single_content a:hover {
  color: #432bb7;
  text-decoration-color: rgba(67, 43, 183, 0.75);
}
.single .single_content a:focus-visible {
  outline: 2px solid rgba(94, 70, 214, 0.45);
  outline-offset: 2px;
  border-radius: 4px;
}
.single .single_content a:visited {
  color: #7a5ce0;
}
.single .single_content img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.single .single_content figure {
  margin: 28px 0;
}
.single .single_content figure img {
  width: 100%;
  box-shadow: 0 14px 34px rgba(18, 23, 38, 0.12);
}
.single .single_content figcaption,
.single .single_content .wp-caption-text {
  margin-top: 10px;
  color: #6f7285;
  font-size: 14px;
  line-height: 1.45;
}
.single .single_content .wp-block-image {
  margin: 28px 0;
}
.single .single_content .wp-block-image img {
  width: 100%;
}
.single .single_content .wp-block-image.aligncenter {
  text-align: center;
}
.single .single_content .wp-block-image.aligncenter img {
  margin-left: auto;
  margin-right: auto;
}
.single .single_content .wp-block-image.alignleft, .single .single_content .wp-block-image.alignright {
  max-width: min(46%, 360px);
  margin-top: 10px;
  margin-bottom: 20px;
}
.single .single_content .wp-block-image.alignleft {
  float: left;
  margin-right: 24px;
}
.single .single_content .wp-block-image.alignright {
  float: right;
  margin-left: 24px;
}
.single .single_content .alignleft {
  float: left;
  margin: 10px 24px 20px 0;
}
.single .single_content .alignright {
  float: right;
  margin: 10px 0 20px 24px;
}
.single .single_content .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.single .single_content .wp-caption {
  max-width: 100%;
}
.single .single_content::after {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 767px) {
  .single .single_content figure,
  .single .single_content .wp-block-image {
    margin: 20px 0;
  }
  .single .single_content .wp-block-image.alignleft,
  .single .single_content .wp-block-image.alignright,
  .single .single_content .alignleft,
  .single .single_content .alignright {
    float: none;
    max-width: 100%;
    margin: 20px 0;
  }
}

.single_related {
  margin: 0 0 40px;
}
.single_related h2 {
  margin: 0 0 30px;
}

.related_grid {
  display: flex;
  gap: 5%;
  row-gap: 80px;
}
@media (max-width: 640px) {
  .related_grid {
    flex-wrap: wrap;
  }
}
.related_grid .blog_grid_item {
  width: 30%;
}
@media (max-width: 640px) {
  .related_grid .blog_grid_item {
    width: 100%;
  }
}

.cover_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.calendar {
  margin: 0 0 24px;
}
@media (max-width: 640px) {
  .calendar {
    height: 800px;
  }
}

/* Календарь «Сегодня» / «Завтра» — стилизация FullCalendar list view */
.cabinet_main_area .calendar,
#calendar_today,
#calendar_tomorrow {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(18, 23, 38, 0.06);
  border: 1px solid #eceaf8;
}

.cabinet_main_area .fc,
#calendar_today .fc,
#calendar_tomorrow .fc {
  --fc-border-color:#eceaf8;
  --fc-button-bg-color:#f5f4ff;
  --fc-button-border-color:#d7d5f5;
  --fc-button-hover-bg-color:#ebe8ff;
  --fc-button-hover-border-color:#8C53FF;
  --fc-button-active-bg-color:#8C53FF;
  --fc-button-active-border-color:#6C40C4;
  --fc-today-bg-color:rgba(140,83,255,0.06);
  --fc-list-event-hover-bg-color:rgba(140,83,255,0.04);
}

.cabinet_main_area .fc .fc-toolbar,
#calendar_today .fc-toolbar,
#calendar_tomorrow .fc-toolbar {
  padding: 16px 20px;
  margin: 0;
  border-bottom: 1px solid #eceaf8;
  gap: 12px;
}

.cabinet_main_area .fc .fc-toolbar-title,
#calendar_today .fc-toolbar-title,
#calendar_tomorrow .fc-toolbar-title {
  font-size: 18px;
  font-weight: 600;
  color: #26252E;
}

.cabinet_main_area .fc .fc-button,
#calendar_today .fc-button,
#calendar_tomorrow .fc-button {
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 500;
  text-transform: none;
  transition: all 0.15s ease;
}

.cabinet_main_area .fc .fc-button:hover,
#calendar_today .fc-button:hover,
#calendar_tomorrow .fc-button:hover {
  background: #ebe8ff !important;
  border-color: #8C53FF !important;
  color: #533A71 !important;
}

.cabinet_main_area .fc .fc-list,
#calendar_today .fc-list,
#calendar_tomorrow .fc-list {
  border: none;
}

.cabinet_main_area .fc .fc-list-event,
#calendar_today .fc-list-event,
#calendar_tomorrow .fc-list-event {
  cursor: default;
}

.cabinet_main_area .fc .fc-list-event:hover td,
#calendar_today .fc-list-event:hover td,
#calendar_tomorrow .fc-list-event:hover td {
  background: rgba(140, 83, 255, 0.04);
}

.cabinet_main_area .fc .fc-list-day-cushion,
#calendar_today .fc-list-day-cushion,
#calendar_tomorrow .fc-list-day-cushion {
  background: #f7f6ff;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
  color: #533A71;
}

.cabinet_main_area .fc .fc-list-event td,
#calendar_today .fc-list-event td,
#calendar_tomorrow .fc-list-event td {
  padding: 12px 20px;
  border-color: #f0eefc;
  vertical-align: middle;
}

.cabinet_main_area .fc .fc-list,
#calendar_today .fc-list,
#calendar_tomorrow .fc-list {
  table-layout: fixed;
}

.cabinet_main_area .fc .fc-list-event-time,
#calendar_today .fc-list-event-time,
#calendar_tomorrow .fc-list-event-time {
  font-size: 14px;
  padding-right: 10px;
  white-space: nowrap;
  color: #666;
  vertical-align: middle;
}

.cabinet_main_area .fc .fc-list-event-title,
#calendar_today .fc-list-event-title,
#calendar_tomorrow .fc-list-event-title {
  width: auto;
}

.cabinet_main_area .event-todo-wrapper,
#calendar_today .event-todo-wrapper,
#calendar_tomorrow .event-todo-wrapper {
  padding: 4px 0;
  gap: 12px;
}

.cabinet_main_area .event-todo-wrapper .event-todo-title,
#calendar_today .event-todo-wrapper .event-todo-title,
#calendar_tomorrow .event-todo-wrapper .event-todo-title {
  font-size: 15px;
  font-weight: 500;
  color: #26252E;
}

.cabinet_main_area .event-todo-wrapper.event-done .event-todo-title,
#calendar_today .event-todo-wrapper.event-done .event-todo-title,
#calendar_tomorrow .event-todo-wrapper.event-done .event-todo-title {
  color: #888;
}

.cabinet_main_area .event-todo-wrapper .calendar-done-checkbox,
#calendar_today .event-todo-wrapper .calendar-done-checkbox,
#calendar_tomorrow .event-todo-wrapper .calendar-done-checkbox {
  width: 20px;
  height: 20px;
  accent-color: #8C53FF;
}

@media (max-width: 767px) {
  #calendar_today .fc-list-event td,
  #calendar_tomorrow .fc-list-event td {
    padding: 10px 12px;
  }
  #calendar_today .fc-list-event-time,
  #calendar_tomorrow .fc-list-event-time {
    width: 90px;
    max-width: 90px;
    min-width: 42px;
    padding-right: 6px;
    font-size: 13px;
    color: #666;
  }
  #calendar_today .fc-list-event-title,
  #calendar_tomorrow .fc-list-event-title {
    width: 100%;
    min-width: 0;
  }
  .cabinet_main_area .event-todo-wrapper .event-todo-title,
  #calendar_today .event-todo-wrapper .event-todo-title,
  #calendar_tomorrow .event-todo-wrapper .event-todo-title {
    flex: 1 1 0%;
    min-width: 0;
    font-size: 15px;
  }
  .cabinet_main_area .event-todo-wrapper,
  #calendar_today .event-todo-wrapper,
  #calendar_tomorrow .event-todo-wrapper {
    gap: 10px;
    min-width: 0;
  }
}
.day-progress {
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f7f6ff;
  box-shadow: 0 0 0 1px rgba(111, 66, 193, 0.07);
}

.day-progress__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.day-progress__title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.day-progress__value {
  font-size: 14px;
  font-weight: 600;
  color: #533A71;
}

.day-progress__bar {
  position: relative;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #e4e2ff;
  overflow: hidden;
  margin-bottom: 6px;
}

.day-progress__bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #533A71, #5AC8FA);
  transition: width 0.2s ease-out;
}

.day-progress__hint {
  font-size: 12px;
  color: #777;
}

.day-save {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 16px;
}

.day-save__row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.day-save__pdf .daybooster_btn {
  max-width: none;
  width: auto;
  min-width: 0;
  border: none;
  outline: none;
  border-bottom: 4px solid #3D87A9;
  font-size: 14px;
}

.day-save__btn {
  padding: 15px 15px;
  font-size: 14px;
  outline: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.day-save__status {
  font-size: 13px;
  color: #666;
  flex-basis: 100%;
  width: 100%;
}

.day-save__status--success {
  color: #2d7a32;
}

.day-save__status--fail {
  color: #c0392b;
}

.day-save__status--error {
  color: #c0392b;
}

.days-timeline-title {
  font-size: 15px;
  font-weight: 600;
  margin: 8px 0 6px;
}

.days-timeline {
  display: flex;
  gap: 10px;
  margin: 0 0 20px;
  justify-content: flex-start;
  flex-wrap: nowrap;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 14px;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 1024px) {
  .days-timeline {
    max-width: none;
  }
}

.days-timeline__day {
  flex: 0 0 60px;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #e4e2ff;
  color: #555;
  gap: 5px;
}

.days-timeline__day-number {
  font-size: 14px;
  line-height: 1;
}

.days-timeline__day-weekday {
  font-size: 14px;
  line-height: 1.1;
  opacity: 0.8;
}

.days-timeline__day--future {
  opacity: 0.4;
}

.days-timeline__day--unknown {
  background: #ddd;
  color: #666;
}

.days-timeline__day--today {
  position: relative;
  background: #fff;
  color: #000;
}

.days-timeline__day--today::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #533A71;
}

.days-timeline__day--success {
  background: #49D060;
  color: #FFF;
}

.days-timeline__day--fail {
  background: #ff6b6b;
  color: #fff;
}

.streak-summary {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f7f6ff;
  box-shadow: 0 0 0 1px rgba(111, 66, 193, 0.07);
}

.streak-summary__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.streak-summary__title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.streak-summary__value {
  font-size: 16px;
  font-weight: 700;
  color: #533A71;
}

.streak-summary__hint {
  margin: 0;
  font-size: 12px;
  color: #666;
}

.week-summary {
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f7f6ff;
  box-shadow: 0 0 0 1px rgba(111, 66, 193, 0.07);
}

.week-summary__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.week-summary__title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.week-summary__value {
  font-size: 16px;
  font-weight: 700;
  color: #533A71;
}

.week-summary__hint {
  margin: 0;
  font-size: 12px;
  color: #666;
}

.week-summary__avg {
  margin: 8px 0 0;
  font-size: 12px;
  color: #555;
}

.event-todo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.event-todo-wrapper .calendar-done-checkbox {
  flex-shrink: 0;
  cursor: pointer;
  width: 18px;
  height: 18px;
}
.event-todo-wrapper .event-todo-title {
  flex: 1;
}
.event-todo-wrapper.event-done .event-todo-title {
  text-decoration: line-through;
  opacity: 0.6;
}

.calendar_events {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.calendar_events .calendar_event {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 4px 14px rgba(18, 23, 38, 0.06);
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, border-color 0.15s ease-out;
  position: relative;
}
.calendar_events .calendar_event_link {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  width: 100%;
}
.calendar_events .calendar_event_image {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
}
.calendar_events .calendar_event_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.calendar_events .calendar_event_body {
  flex: 1;
  min-width: 0;
}
.calendar_events .calendar_event_title {
  font-size: 15px;
  color: #111;
  font-weight: 600;
  line-height: 1.25;
}
.calendar_events .calendar_event_desc {
  font-size: 12px;
  line-height: 1.35;
  color: #4b5563;
  margin-top: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.calendar_events .calendar_event_desc--rich {
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
  font-size: 13px;
  line-height: 1.45;
  margin-top: 0;
}
.calendar_events .calendar_event_desc--rich p {
  margin: 0 0 0.5em;
}
.calendar_events .calendar_event_desc--rich p:last-child {
  margin-bottom: 0;
}
.calendar_events .calendar_event_desc--rich ul, .calendar_events .calendar_event_desc--rich ol {
  margin: 0 0 0.5em 1.1em;
  padding: 0;
}
.calendar_events .calendar_event_desc--rich a {
  color: #8C53FF;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.calendar_events .calendar_event:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(18, 23, 38, 0.12);
  border-color: rgba(111, 66, 193, 0.35);
}

.today_advices {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}
.today_advices .today_advices_title {
  font-size: 18px;
  font-weight: 600;
  color: #26252E;
  margin: 0 0 16px;
}
.today_advices .today_advices_direction {
  margin-bottom: 20px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(18, 23, 38, 0.06);
}
.today_advices .today_advices_direction:last-child {
  margin-bottom: 0;
}
.today_advices .today_advices_direction_title {
  font-size: 15px;
  font-weight: 600;
  color: #26252E;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f4;
}
.today_advices .today_advices_list ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.today_advices .today_advices_list ul li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 28px;
  line-height: 1.5;
  color: #555;
}
.today_advices .today_advices_list ul li:last-child {
  margin-bottom: 0;
}
.today_advices .today_advices_list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background-color: rgba(140, 83, 255, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238c53ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
}

.single_inner {
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .single_inner {
    flex-wrap: wrap;
  }
}

.single_main_area {
  width: calc(100% - 250px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767px) {
  .single_main_area {
    width: 100%;
  }
}
.single_main_area div {
  line-height: 26px;
}

.single_inner--full .single_main_area {
  width: 100%;
}

.single_sidebar {
  width: 250px;
}
@media (max-width: 767px) {
  .single_sidebar {
    width: 100%;
  }
}
.single_sidebar .single_sidebar_block {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eceaf8;
  box-shadow: 0 14px 40px rgba(18, 23, 38, 0.06);
  padding: 18px 16px;
}
.single_sidebar_title {
  font-weight: 700;
  color: #26252E;
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.2;
}
.single_sidebar .action_videos {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 520px;
  overflow: auto;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 767px) {
  .single_sidebar .action_videos {
    max-height: none;
    overflow: initial;
  }
}
.single_sidebar .action_video_single {
  height: 0;
  padding-top: 56.25%;
  display: block;
  color: #fff;
  text-transform: none;
  position: relative;
  background: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, opacity 0.15s ease-out;
  overflow: hidden;
  width: 100%;
  margin: 0;
  box-shadow: 0 10px 24px rgba(18, 23, 38, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.single_sidebar .action_video_single::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  z-index: 12;
}
.single_sidebar .action_video_single::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  z-index: 13;
}
.single_sidebar .action_video_single .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 10;
}
.single_sidebar .action_video_single:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(18, 23, 38, 0.16);
  opacity: 1;
}
.single_sidebar .action_video_info {
  position: relative;
  z-index: 11;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 14px 12px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.single.text {
  padding: 40px 0 60px;
}
@media (max-width: 1200px) {
  .single.text {
    padding: 30px 15px 50px;
  }
}
.single.text h1 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 24px;
  color: #26252E;
}
.single.text .single_main_area {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 24px 28px;
  box-shadow: 0 14px 40px rgba(18, 23, 38, 0.06);
  border: 1px solid #eceaf8;
}

/* Продающая страница программы (single capability) */
.single-capability_selling {
  padding: 0 0 80px;
}
@media (max-width: 1200px) {
  .single-capability_selling {
    padding: 0 0 60px;
  }
}

.capability_hero {
  position: relative;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  background-color: #2d2a3e;
  display: flex;
  align-items: center;
  padding: 60px 0;
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  .capability_hero {
    min-height: 320px;
    padding: 40px 0;
  }
}
.capability_hero_wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .capability_hero_wrap {
    flex-wrap: wrap;
  }
}

.capability_hero_overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 420px at 15% 20%, rgba(140, 83, 255, 0.42) 0%, rgba(140, 83, 255, 0) 60%), linear-gradient(135deg, rgba(76, 58, 110, 0.92) 0%, rgba(45, 42, 62, 0.9) 100%);
  pointer-events: none;
}

.capability_hero_inner {
  position: relative;
  z-index: 1;
}

.capability_hero_content {
  padding: 28px 30px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (max-width: 767px) {
  .capability_hero_content {
    padding: 20px 18px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.2);
  }
}

.capability_meta.capability_category {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
}
.capability_meta.capability_category a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  text-decoration: none;
}
.capability_meta.capability_category a:hover {
  text-decoration: underline;
  color: #fff;
}

.capability_hero_title_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin: 0 0 16px;
}

.capability_hero_title {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
@media (max-width: 767px) {
  .capability_hero_title {
    font-size: 28px;
  }
}

.new_badge--hero {
  position: static;
  flex-shrink: 0;
  padding: 6px 16px 7px;
  font-size: 12px;
  line-height: 1.15;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #fff;
  background: linear-gradient(135deg, #ff5e8a 0%, #ff2d6b 42%, #e01e5a 100%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 6px 22px rgba(224, 30, 90, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .new_badge--hero {
    font-size: 10px;
    padding: 5px 12px 6px;
  }
}

.capability_level_badge--hero {
  position: static;
  flex-shrink: 0;
  padding: 6px 14px 7px;
  font-size: 11px;
  line-height: 1.15;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
@media (max-width: 767px) {
  .capability_level_badge--hero {
    font-size: 9px;
    padding: 5px 11px 6px;
    letter-spacing: 0.06em;
  }
}
.capability_level_badge--hero.capability_level_badge--tier-1 {
  color: #fff;
  background: linear-gradient(135deg, #6eceb9 0%, #2e8f7c 100%);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}
.capability_level_badge--hero.capability_level_badge--tier-2 {
  color: #fff;
  background: linear-gradient(135deg, #a898ff 0%, #5a3dc4 100%);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}
.capability_level_badge--hero.capability_level_badge--tier-3 {
  color: #fff;
  background: linear-gradient(135deg, #ffb088 0%, #e4562a 100%);
  border-color: rgba(255, 235, 220, 0.5);
  box-shadow: 0 8px 26px rgba(228, 86, 42, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.capability_level_badge--hero.capability_level_badge--tier-4 {
  color: #1a1028;
  background: linear-gradient(135deg, #ffe566 0%, #ffb84d 20%, #ff8ad0 45%, #7cf0ff 72%, #c4a5ff 100%);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 32px rgba(255, 184, 77, 0.4), 0 0 28px rgba(111, 232, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.capability_level_badge--hero.capability_level_badge--tier-0 {
  color: #fff;
  background: linear-gradient(135deg, #8b95a8 0%, #5c6478 100%);
  text-transform: none;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.capability_hero--lvl-1 .capability_hero_overlay {
  background: radial-gradient(900px 420px at 15% 20%, rgba(80, 197, 183, 0.35) 0%, rgba(80, 197, 183, 0) 58%), radial-gradient(900px 420px at 15% 20%, rgba(140, 83, 255, 0.42) 0%, rgba(140, 83, 255, 0) 60%), linear-gradient(135deg, rgba(76, 58, 110, 0.92) 0%, rgba(45, 42, 62, 0.9) 100%);
}

.capability_hero--lvl-2 .capability_hero_overlay {
  background: radial-gradient(820px 400px at 12% 18%, rgba(140, 83, 255, 0.5) 0%, rgba(140, 83, 255, 0) 55%), radial-gradient(700px 360px at 88% 30%, rgba(111, 66, 193, 0.35) 0%, transparent 60%), linear-gradient(135deg, rgba(76, 58, 110, 0.93) 0%, rgba(45, 42, 62, 0.91) 100%);
}

.capability_hero--lvl-3 .capability_hero_overlay {
  background: radial-gradient(780px 380px at 20% 22%, rgba(255, 138, 92, 0.38) 0%, transparent 55%), radial-gradient(720px 400px at 80% 25%, rgba(140, 83, 255, 0.45) 0%, transparent 58%), linear-gradient(135deg, rgba(88, 48, 72, 0.94) 0%, rgba(42, 38, 58, 0.92) 100%);
}

.capability_hero--lvl-4 .capability_hero_overlay {
  background: radial-gradient(720px 400px at 18% 20%, rgba(255, 214, 102, 0.42) 0%, transparent 52%), radial-gradient(680px 420px at 85% 28%, rgba(124, 240, 255, 0.28) 0%, transparent 55%), radial-gradient(600px 380px at 50% 100%, rgba(255, 122, 200, 0.2) 0%, transparent 50%), linear-gradient(135deg, rgba(72, 52, 98, 0.94) 0%, rgba(38, 34, 52, 0.93) 100%);
}

.capability_hero_duration {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.capability_hero_duration_icon {
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0.9;
}

.capability_hero_cta {
  display: inline-block;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  background: #533A71;
  color: #fff !important;
  border: none;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.capability_hero_cta:hover {
  background: rgb(68.1473684211, 47.6210526316, 92.7789473684);
  transform: translateY(-1px);
}

.capability_content {
  max-width: 800px;
  margin: -40px auto 0;
  position: relative;
  z-index: 2;
  padding: 0 15px;
}
@media (max-width: 1024px) {
  .capability_content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .capability_content {
    margin-top: -24px;
  }
}

.capability_block {
  background: #fff;
  border-radius: 20px;
  padding: 32px 36px;
  margin-bottom: 24px;
  box-shadow: 0 10px 40px rgba(18, 23, 38, 0.08);
  border: 1px solid #eceaf8;
}
.capability_block ul {
  margin: 20px 0;
}
@media (max-width: 767px) {
  .capability_block {
    padding: 24px 20px;
    margin-bottom: 20px;
  }
}

.capability_block_title {
  font-size: 22px;
  font-weight: 700;
  color: #26252E;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(140, 83, 255, 0.2);
}

.capability_block_inner {
  font-size: 16px;
  line-height: 1.65;
  color: #444;
}
.capability_block_inner p {
  margin: 0 0 12px;
}
.capability_block_inner p:last-child {
  margin-bottom: 0;
}
.capability_block_inner ul, .capability_block_inner ol {
  margin: 0 0 12px;
  padding-left: 1.4em;
}

/* Иконки для списков в блоках single-capability (WYSIWYG) */
.single-capability_selling .capability_block_inner ul {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}
.single-capability_selling .capability_block_inner ul li {
  position: relative;
  padding-left: 34px;
  margin: 0 0 10px;
}
.single-capability_selling .capability_block_inner ul li:last-child {
  margin-bottom: 0;
}
.single-capability_selling .capability_block_inner ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background-color: rgba(140, 83, 255, 0.12);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
}
.single-capability_selling {
  /* Чего ожидать — галочка */
}
.single-capability_selling .capability_expect .capability_block_inner ul li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238c53ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}
.single-capability_selling {
  /* Что понадобится — инструмент */
}
.single-capability_selling .capability_need .capability_block_inner ul li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238c53ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a4 4 0 0 0-5.4 5.4L3 18l3 3 6.3-6.3a4 4 0 0 0 5.4-5.4L14 13l-3-3 3.7-3.7z'/%3E%3C/svg%3E");
}
.single-capability_selling {
  /* Кому подойдёт — пользователь */
}
.single-capability_selling .capability_audience .capability_block_inner ul li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238c53ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}
.single-capability_selling {
  /* Таймлайн — флаг */
}
.single-capability_selling .capability_timeline .capability_timeline_desc ul li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238c53ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3v18'/%3E%3Cpath d='M6 4h12l-2 4 2 4H6'/%3E%3C/svg%3E");
}

html.theme-dark .single-capability_selling .capability_block_inner ul li::before {
  background-color: rgba(140, 83, 255, 0.18);
}

.capability_timeline_list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.capability_timeline_item {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 52px;
}
.capability_timeline_item:last-child {
  border-bottom: none;
}

.capability_timeline_item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background-color: rgba(140, 83, 255, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238c53ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3v18'/%3E%3Cpath d='M6 4h12l-2 4 2 4H6'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
}

.capability_timeline_item::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 62px;
  bottom: -20px;
  width: 2px;
  background: rgba(140, 83, 255, 0.14);
}

.capability_timeline_item:last-child::after {
  display: none;
}

.capability_timeline_period {
  display: inline-block;
  font-weight: 700;
  font-size: 17px;
  color: #533A71;
  margin-bottom: 8px;
}

.capability_timeline_desc {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.capability_footer_meta {
  padding: 20px 0 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.capability_footer_category {
  margin: 0;
  font-size: 14px;
  color: #666;
}
.capability_footer_category .capability_footer_label {
  font-weight: 600;
  color: #333;
}
.capability_footer_category a {
  color: #533A71;
  text-decoration: none;
}
.capability_footer_category a:hover {
  text-decoration: underline;
}

.capability_cta_block {
  text-align: center;
  padding: 46px 28px;
  background: radial-gradient(600px 260px at 30% 10%, rgba(140, 83, 255, 0.16) 0%, rgba(140, 83, 255, 0) 60%), linear-gradient(180deg, #f7f6ff 0%, #fff 100%);
  border-radius: 20px;
  border: 1px solid #eceaf8;
  margin-top: 16px;
  box-shadow: 0 18px 60px rgba(18, 23, 38, 0.08);
}
@media (max-width: 767px) {
  .capability_cta_block {
    padding: 34px 18px;
    border-radius: 18px;
  }
}

.capability_cta_text {
  font-size: 17px;
  color: #444;
  margin: 0 0 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.capability_cta_btn {
  display: inline-block;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  background: #533A71;
  color: #fff !important;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.capability_cta_btn:hover {
  background: rgb(68.1473684211, 47.6210526316, 92.7789473684);
  transform: translateY(-1px);
}

.capability_soon .capability_block_inner {
  color: #666;
  font-size: 16px;
}

html.theme-dark .capability_block {
  background: #25262e;
  border-color: #3a3b45;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

html.theme-dark .capability_block_title {
  color: #e8e8f0;
  border-bottom-color: rgba(140, 83, 255, 0.3);
}

html.theme-dark .capability_block_inner,
html.theme-dark .capability_timeline_desc {
  color: #c8c8d4;
}

html.theme-dark .capability_timeline_item {
  border-color: #3a3b45;
}

html.theme-dark .capability_timeline_period {
  color: #b8a0ff;
}

html.theme-dark .capability_timeline_item::before {
  background-color: rgba(140, 83, 255, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b8a0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3v18'/%3E%3Cpath d='M6 4h12l-2 4 2 4H6'/%3E%3C/svg%3E");
}

html.theme-dark .capability_timeline_item::after {
  background: rgba(140, 83, 255, 0.22);
}

html.theme-dark .capability_footer_category {
  color: #a0a0b0;
}
html.theme-dark .capability_footer_category .capability_footer_label {
  color: #e2e2ea;
}
html.theme-dark .capability_footer_category a {
  color: #b8a0ff;
}

html.theme-dark .capability_cta_block {
  background: radial-gradient(600px 260px at 30% 10%, rgba(140, 83, 255, 0.18) 0%, rgba(140, 83, 255, 0) 60%), linear-gradient(180deg, #1e1f28 0%, #25262e 100%);
  border-color: #3a3b45;
}

html.theme-dark .capability_cta_text {
  color: #e2e2ea;
}

.front_page {
  padding: 0 0 60px;
}
.front_page .front_capability_no_schedule {
  padding-top: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(38, 37, 46, 0.08);
  margin-bottom: 8px;
}
.front_page .front_capability_no_schedule_title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #2C3E50;
}
.front_page .front_capability_no_schedule_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.front_page .front_capability_no_schedule_item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
  padding: 10px 14px;
  background: rgba(140, 83, 255, 0.06);
  border-radius: 10px;
  border: 1px solid rgba(140, 83, 255, 0.12);
}
.front_page .front_capability_no_schedule_name {
  font-size: 15px;
  font-weight: 500;
  color: #26252E;
  flex: 1 1 auto;
  min-width: 0;
}
.front_page .front_capability_no_schedule_days {
  font-size: 14px;
  font-weight: 600;
  color: #533A71;
  white-space: nowrap;
}
.front_page .pagination,
.front_page nav.pagination,
.front_page nav.navigation.pagination,
.front_page .nav-links {
  display: none !important;
}
.front_page_wrapper {
  text-align: center;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.front_page_wrapper #loginform {
  padding: 20px 20px;
}
.front_page_wrapper #loginform input {
  display: block;
  width: 100%;
}
.front_page .title {
  position: relative;
  padding: 0 0 0 15px;
  margin: 0 0 80px;
  font-size: 40px;
  color: #2C3E50;
}
@media (max-width: 767px) {
  .front_page .title {
    font-size: 24px;
    margin: 0 0 20px;
  }
}
.front_page .title:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 5px;
  height: 100%;
  background: #533A71;
}
.front_page_description {
  display: flex;
  gap: 40px;
}
@media (max-width: 767px) {
  .front_page_description {
    flex-wrap: wrap;
  }
}
.front_page_description .text {
  width: 70%;
}
@media (max-width: 767px) {
  .front_page_description .text {
    width: 100%;
  }
}
.front_page_description .image {
  width: 30%;
}
@media (max-width: 767px) {
  .front_page_description .image {
    width: 100%;
  }
}

.hero {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
  padding: 40px 15px 20px;
  text-align: center;
}
@media (max-width: 640px) {
  .hero {
    min-height: 420px;
  }
}
.hero h1 {
  font-weight: 700;
  color: #26252E;
  font-size: 36px;
  max-width: 720px;
  line-height: 1.2;
}
@media (max-width: 640px) {
  .hero h1 {
    font-size: 26px;
  }
}
.hero .description {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.6;
  color: #2C3E50;
}
.hero .hero__result {
  margin: 0;
  max-width: 520px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: #4a4658;
  letter-spacing: 0.01em;
}
@media (max-width: 640px) {
  .hero .hero__result {
    font-size: 14px;
    padding: 0 4px;
  }
}
.hero .hero__sub {
  margin: -4px 0 0;
  max-width: 560px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  color: #6b6778;
}
@media (max-width: 640px) {
  .hero .hero__sub {
    font-size: 13px;
    padding: 0 8px;
  }
}
.hero .hero__cta {
  margin: 16px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 22px;
  width: 100%;
}
.hero .hero__cta-btn {
  flex-shrink: 0;
  max-width: 280px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.hero {
  /* Поиск программ (если вернут форму на главную или на другую страницу) */
}
.hero .hero_search,
.hero #search_capability.hero_search {
  width: 100%;
  max-width: 580px;
  margin: 20px auto 0;
  padding: 6px 8px 6px 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-align: left;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 246, 255, 0.92) 100%);
  border: 1px solid rgba(140, 83, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 10px 40px rgba(38, 37, 46, 0.08), 0 2px 8px rgba(140, 83, 255, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.hero .hero_search:focus-within,
.hero #search_capability.hero_search:focus-within {
  border-color: rgba(140, 83, 255, 0.45);
  box-shadow: 0 14px 48px rgba(38, 37, 46, 0.1), 0 0 0 3px rgba(140, 83, 255, 0.18), inset 0 1px 0 rgb(255, 255, 255);
}
@media (max-width: 767px) {
  .hero .hero_search,
  .hero #search_capability.hero_search {
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
    padding: 10px 10px 12px;
    gap: 12px;
  }
}
.hero .hero_search__field {
  position: relative;
  flex: 1;
  min-width: 0;
  margin: 0;
}
.hero .hero_search__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  pointer-events: none;
  opacity: 0.55;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238C53FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") center/contain no-repeat;
}
@media (max-width: 767px) {
  .hero .hero_search__icon {
    left: 16px;
  }
}
.hero .hero_search__input {
  display: block;
  width: 100%;
  margin: 0;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 999px;
  padding: 14px 18px 14px 48px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  color: #26252E;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}
.hero .hero_search__input::placeholder {
  color: #8b87a8;
  font-weight: 400;
}
.hero .hero_search__input:focus {
  outline: none;
}
.hero .hero_search__input::-webkit-search-decoration, .hero .hero_search__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
@media (max-width: 767px) {
  .hero .hero_search__input {
    padding: 14px 16px 14px 48px;
  }
}
.hero .hero_search__clear {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #6c40c4;
  background: rgba(140, 83, 255, 0.1);
  border: 1px solid rgba(140, 83, 255, 0.28);
  border-radius: 999px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.hero .hero_search__clear:hover {
  background: rgba(140, 83, 255, 0.16);
  border-color: rgba(140, 83, 255, 0.42);
  color: #533a8f;
}
.hero .hero_search__clear:focus-visible {
  outline: 2px solid rgba(140, 83, 255, 0.5);
  outline-offset: 2px;
}
.hero .hero_search__clear.hero_search__clear--visible {
  display: inline-flex;
}
@media (max-width: 767px) {
  .hero .hero_search__clear {
    width: 100%;
    padding: 12px 16px;
  }
}

/* Полоса доверия под hero на главной */
.db-trust-strip {
  padding-top: 12px;
  padding-bottom: 8px;
}
@media (max-width: 1200px) {
  .db-trust-strip {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.db-trust-strip__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1024px) {
  .db-trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .db-trust-strip__grid {
    grid-template-columns: 1fr;
  }
}
.db-trust-strip__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 16px;
  min-height: 100%;
  border-radius: 18px;
  border-width: 1px;
  border-style: solid;
  box-shadow: 0 6px 24px rgba(38, 37, 46, 0.07), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
@media (min-width: 1025px) {
  .db-trust-strip__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
  }
}
.db-trust-strip__item:hover {
  transform: translateY(-4px);
}
.db-trust-strip__item--ru {
  border-color: rgba(37, 99, 235, 0.28);
  background: radial-gradient(120% 80% at 20% 0%, rgba(191, 219, 254, 0.55) 0%, transparent 55%), radial-gradient(100% 70% at 100% 100%, rgba(254, 202, 202, 0.35) 0%, transparent 50%), linear-gradient(165deg, #f8fafc 0%, #eff6ff 40%, #ffffff 100%);
}
.db-trust-strip__item--ru:hover {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 14px 40px rgba(37, 99, 235, 0.14), 0 1px 0 rgb(255, 255, 255) inset;
}
.db-trust-strip__item--digital {
  border-color: rgba(6, 182, 212, 0.35);
  background: radial-gradient(100% 90% at 10% 20%, rgba(34, 211, 238, 0.22) 0%, transparent 55%), radial-gradient(90% 80% at 95% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 50%), linear-gradient(155deg, #faf5ff 0%, #ecfeff 45%, #ffffff 100%);
}
.db-trust-strip__item--digital:hover {
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 14px 40px rgba(139, 92, 246, 0.16), 0 0 0 1px rgba(34, 211, 238, 0.12), 0 1px 0 rgb(255, 255, 255) inset;
}
.db-trust-strip__item--users {
  border-color: rgba(245, 158, 11, 0.4);
  background: radial-gradient(110% 85% at 50% -10%, rgba(253, 230, 138, 0.65) 0%, transparent 45%), linear-gradient(170deg, #fffbeb 0%, #fef3c7 35%, #ffffff 100%);
}
.db-trust-strip__item--users:hover {
  border-color: rgba(217, 119, 6, 0.5);
  box-shadow: 0 14px 40px rgba(245, 158, 11, 0.2), 0 1px 0 rgb(255, 255, 255) inset;
}
.db-trust-strip__item--social {
  border-color: rgba(16, 185, 129, 0.38);
  background: radial-gradient(100% 90% at 0% 100%, rgba(167, 243, 208, 0.5) 0%, transparent 52%), radial-gradient(90% 70% at 100% 0%, rgba(251, 207, 232, 0.35) 0%, transparent 48%), linear-gradient(160deg, #ecfdf5 0%, #f0fdf4 38%, #ffffff 100%);
}
.db-trust-strip__item--social:hover {
  border-color: rgba(5, 150, 105, 0.5);
  box-shadow: 0 14px 40px rgba(16, 185, 129, 0.18), 0 1px 0 rgb(255, 255, 255) inset;
}
.db-trust-strip__icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}
@media (min-width: 1025px) {
  .db-trust-strip__icon {
    width: 80px;
    height: 80px;
    border-radius: 22px;
  }
}
.db-trust-strip__icon--ru {
  background: linear-gradient(145deg, #dbeafe 0%, #bfdbfe 45%, #93c5fd 100%);
  box-shadow: 0 6px 22px rgba(37, 99, 235, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}
.db-trust-strip__icon--digital {
  background: linear-gradient(145deg, #e0f2fe 0%, #ddd6fe 50%, #fce7f3 100%);
  box-shadow: 0 6px 24px rgba(139, 92, 246, 0.28), 0 0 20px rgba(34, 211, 238, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}
.db-trust-strip__icon--users {
  background: linear-gradient(145deg, #fef9c3 0%, #fde047 40%, #f59e0b 100%);
  box-shadow: 0 6px 24px rgba(217, 119, 6, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.45) inset;
}
.db-trust-strip__icon--social {
  background: linear-gradient(145deg, #d1fae5 0%, #6ee7b7 45%, #34d399 100%);
  box-shadow: 0 6px 24px rgba(5, 150, 105, 0.3), 0 0 18px rgba(244, 114, 182, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}
.db-trust-strip__svg {
  width: 56px;
  height: 56px;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12));
}
@media (min-width: 1025px) {
  .db-trust-strip__svg {
    width: 62px;
    height: 62px;
  }
}
.db-trust-strip__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.db-trust-strip__title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: #26252E;
  letter-spacing: -0.01em;
}
@media (min-width: 1025px) {
  .db-trust-strip__title {
    font-size: 15px;
  }
}
.db-trust-strip__hint {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  color: #2C3E50;
  font-weight: 500;
}
.db-trust-strip__item--ru .db-trust-strip__title {
  color: #1e3a5f;
}
.db-trust-strip__item--digital .db-trust-strip__title {
  color: #4c1d95;
}
.db-trust-strip__item--users .db-trust-strip__title {
  color: #78350f;
}
.db-trust-strip__item--social .db-trust-strip__title {
  color: #064e3b;
}

/* Краткий блок «О DayBooster» под полосой доверия на главной */
.db-about-teaser {
  padding-top: 4px;
  padding-bottom: 16px;
}
@media (max-width: 1200px) {
  .db-about-teaser {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.db-about-teaser__card {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px 28px;
  padding: 22px 26px;
  border-radius: 20px;
  border: 1px solid rgba(140, 83, 255, 0.16);
  background: radial-gradient(420px 160px at 8% 30%, rgba(140, 83, 255, 0.12) 0%, transparent 55%), radial-gradient(360px 140px at 92% 70%, rgba(76, 217, 100, 0.1) 0%, transparent 50%), linear-gradient(152deg, #faf9ff 0%, #f6f8fc 45%, #ffffff 100%);
  box-shadow: 0 6px 28px rgba(38, 37, 46, 0.07), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}
@media (max-width: 640px) {
  .db-about-teaser__card {
    padding: 18px 18px;
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .db-about-teaser__card {
    padding: 20px 16px 22px;
    gap: 14px 0;
    border-radius: 16px;
    align-items: stretch;
  }
}
@media (max-width: 767px) {
  .db-about-teaser__body {
    flex: 1 1 100%;
  }
  .db-about-teaser__title {
    font-size: 20px;
    line-height: 1.28;
    margin-bottom: 8px;
  }
  .db-about-teaser__lead {
    max-width: none;
    font-size: 15px;
    line-height: 1.55;
  }
  .db-about-teaser__highlights {
    flex: 1 1 100%;
    min-width: 0;
    gap: 8px;
    padding-top: 4px;
    border-top: 1px solid rgba(140, 83, 255, 0.1);
  }
  .db-about-teaser__item {
    font-size: 14px;
    padding-left: 20px;
  }
}
.db-about-teaser__body {
  flex: 1 1 220px;
  min-width: 0;
}
.db-about-teaser__eyebrow {
  margin: 0 0 8px;
  display: inline-flex;
  padding: 5px 11px;
  border-radius: 14px;
  background: rgba(140, 83, 255, 0.1);
  color: #6C40C4;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.db-about-teaser__title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  color: #26252E;
}
@media (min-width: 768px) {
  .db-about-teaser__title {
    font-size: 24px;
  }
}
.db-about-teaser__name {
  color: #6C40C4;
}
.db-about-teaser__lead {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #5d5a6b;
  max-width: 52ch;
}
.db-about-teaser__highlights {
  list-style: none;
  margin: 0;
  padding: 20px 0 0;
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: min(100%, 220px);
}
.db-about-teaser__item {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: #3a3748;
}
.db-about-teaser__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8C53FF 0%, #4CD964 100%);
  box-shadow: 0 0 0 2px rgba(140, 83, 255, 0.15);
}
.db-about-teaser__stats-link-wrap {
  flex: 1 1 100%;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(140, 83, 255, 0.12);
  text-align: center;
}
@media (min-width: 768px) {
  .db-about-teaser__stats-link-wrap {
    text-align: left;
  }
}
.db-about-teaser__stats-link {
  font-size: 14px;
  font-weight: 700;
  color: #533A71;
  text-decoration: none;
}
.db-about-teaser__stats-link:hover {
  text-decoration: underline;
}
.db-about-teaser__stats-link:focus-visible {
  outline: 2px solid rgba(140, 83, 255, 0.45);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Блок «Установить PWA» (шорткод [daybooster_pwa_install]) */
.db-pwa-section {
  padding-top: 8px;
  padding-bottom: 8px;
}
@media (max-width: 1200px) {
  .db-pwa-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.daybooster-pwa-install__card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px 36px;
  padding: 28px 32px;
  border-radius: 20px;
  background: radial-gradient(520px 200px at 12% 20%, rgba(140, 83, 255, 0.14) 0%, transparent 55%), radial-gradient(400px 180px at 88% 80%, rgba(76, 217, 100, 0.12) 0%, transparent 50%), linear-gradient(145deg, #faf9ff 0%, #f4f6fb 100%);
  border: 1px solid rgba(140, 83, 255, 0.18);
  box-shadow: 0 4px 24px rgba(38, 37, 46, 0.06), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}
@media (max-width: 640px) {
  .daybooster-pwa-install__card {
    padding: 22px 20px;
    gap: 20px;
  }
}
.daybooster-pwa-install__visual {
  flex: 0 0 auto;
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media (min-width: 641px) {
  .daybooster-pwa-install__visual {
    margin: 0;
  }
}
.daybooster-pwa-install__glow {
  position: absolute;
  inset: -6px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(140, 83, 255, 0.35) 0%, rgba(76, 217, 100, 0.25) 100%);
  opacity: 0.35;
  filter: blur(12px);
  z-index: 0;
}
.daybooster-pwa-install__icon {
  position: relative;
  z-index: 1;
  color: #6C40C4;
  filter: drop-shadow(0 2px 8px rgba(108, 64, 196, 0.2));
}
.daybooster-pwa-install__body {
  flex: 1 1 280px;
  min-width: 0;
}
.daybooster-pwa-install__title {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  color: #26252E;
}
@media (max-width: 640px) {
  .daybooster-pwa-install__title {
    font-size: 22px;
    text-align: center;
  }
}
.daybooster-pwa-install__subtitle {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.55;
  color: #2C3E50;
  max-width: 560px;
}
@media (max-width: 640px) {
  .daybooster-pwa-install__subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
.daybooster-pwa-install__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
}
@media (max-width: 640px) {
  .daybooster-pwa-install__actions {
    justify-content: center;
  }
}
.daybooster-pwa-install__actions .daybooster_btn {
  margin: 0;
  flex: 0 0 auto;
  width: auto;
  max-width: 250px;
  min-width: 0;
  padding-left: 22px;
  padding-right: 22px;
}
@media (max-width: 480px) {
  .daybooster-pwa-install__actions .daybooster_btn {
    width: 100%;
    max-width: none;
  }
}
.daybooster-pwa-install__browser {
  text-decoration: none;
}
.daybooster-pwa-install__hint {
  margin: 16px 0 0;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.5;
  color: #5E5A82;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 12px;
  border: 1px solid rgba(140, 83, 255, 0.12);
  max-width: 560px;
}
@media (max-width: 640px) {
  .daybooster-pwa-install__hint {
    text-align: center;
  }
}
.daybooster-pwa-install__done {
  color: #1e5f2a;
  background: rgba(76, 217, 100, 0.12);
  border-color: rgba(54, 154, 70, 0.25);
}

#front-programs {
  scroll-margin-top: 90px;
}
@media (max-width: 1024px) {
  #front-programs {
    scroll-margin-top: 76px;
  }
}

.courses {
  padding: 50px 0;
}
@media (max-width: 1200px) {
  .courses {
    padding: 10px 15px;
  }
}

.courses__stats-teaser {
  margin: 0 0 28px;
  max-width: 720px;
  padding: 0 15px;
  font-size: 16px;
  line-height: 1.55;
  color: #2C3E50;
}
@media (max-width: 767px) {
  .courses__stats-teaser {
    font-size: 15px;
    margin-bottom: 18px;
  }
}
.courses__stats-teaser a {
  color: #533A71;
  font-weight: 600;
  text-decoration: none;
}
.courses__stats-teaser a:hover {
  text-decoration: underline;
}

.front_page .what .what__stats-teaser {
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: #2C3E50;
}
@media (max-width: 767px) {
  .front_page .what .what__stats-teaser {
    font-size: 15px;
  }
}
.front_page .what .what__stats-teaser a {
  color: #533A71;
  font-weight: 600;
  text-decoration: none;
}
.front_page .what .what__stats-teaser a:hover {
  text-decoration: underline;
}

.db-author-programs__head {
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .db-author-programs__head {
    margin-bottom: 28px;
  }
}
.db-author-programs__head .title {
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .db-author-programs__head .title {
    margin-bottom: 12px;
  }
}
.db-author-programs__intro {
  margin: 0;
  padding-left: 15px;
  max-width: 720px;
  font-size: 17px;
  line-height: 1.55;
  color: #2C3E50;
}
@media (max-width: 767px) {
  .db-author-programs__intro {
    font-size: 15px;
    line-height: 1.5;
  }
}
.db-author-programs__actions {
  margin-top: 48px;
}
@media (max-width: 767px) {
  .db-author-programs__actions {
    margin-top: 32px;
  }
}

/* Витрина магазина (/shop/): продающие блоки (см. app/Helpers/shop-selling.php) */
.db-shop-hero {
  margin: 0 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8e8ee;
}
.db-shop-hero__title {
  font-size: 32px;
  font-weight: 700;
  color: #26252E;
  margin: 0 0 12px;
  line-height: 1.2;
}
@media (max-width: 640px) {
  .db-shop-hero__title {
    font-size: 24px;
  }
}
.db-shop-hero__lead {
  font-size: 16px;
  line-height: 1.55;
  color: #2C3E50;
  margin: 0 0 16px;
  max-width: 720px;
}
.db-shop-hero__cta {
  margin: 0;
}
.db-shop-hero__btn {
  display: inline-block;
}

/* Тарифы Premium 30 / 90 / 365 (см. app/Helpers/premium-pricing.php) */
.db-premium-pricing {
  margin: 0 0 40px;
  padding: 32px 0 8px;
}
@media (max-width: 767px) {
  .db-premium-pricing {
    margin-bottom: 28px;
    padding-top: 24px;
  }
}
.db-premium-pricing__title {
  font-size: 28px;
  font-weight: 700;
  color: #26252E;
  margin: 0 0 10px;
  line-height: 1.2;
}
@media (max-width: 640px) {
  .db-premium-pricing__title {
    font-size: 22px;
  }
}
.db-premium-pricing__intro {
  font-size: 16px;
  line-height: 1.55;
  color: #2C3E50;
  margin: 0 0 24px;
  max-width: 720px;
}
.db-premium-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .db-premium-pricing__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}
.db-premium-pricing__card {
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  border-radius: 16px;
  border: 1px solid #e8e8ee;
  background: #fafafc;
}
.db-premium-pricing__card--featured {
  border-color: rgba(158, 82, 255, 0.45);
  background: linear-gradient(180deg, rgba(158, 82, 255, 0.08) 0%, #fafafc 48%);
  box-shadow: 0 8px 28px rgba(158, 82, 255, 0.12);
}
.db-premium-pricing__card_head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 12px;
}
.db-premium-pricing__duration {
  font-size: 18px;
  font-weight: 700;
  color: #26252E;
}
.db-premium-pricing__badge {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(158, 82, 255, 0.2) 0%, rgba(158, 82, 255, 0.08) 100%);
  color: #6b3dad;
}
.db-premium-pricing__price {
  font-size: 26px;
  font-weight: 700;
  color: #26252E;
  line-height: 1.2;
  margin-bottom: 6px;
}
.db-premium-pricing__price .woocommerce-Price-amount {
  font-weight: 700;
}
.db-premium-pricing__per {
  font-size: 13px;
  color: #2C3E50;
  margin: 0 0 16px;
  line-height: 1.4;
}
.db-premium-pricing__missing {
  font-size: 14px;
  color: #2C3E50;
  margin: 0 0 14px;
  line-height: 1.45;
  flex: 1;
}
.db-premium-pricing__btn {
  margin-top: auto;
  align-self: flex-start;
  text-align: center;
}

.db-premium-pricing--front {
  border-bottom: 1px solid #e8e8ee;
  padding-bottom: 36px;
}

.db-premium-pricing--shop {
  margin: 0 0 28px;
  padding-top: 0;
}

/* Блок «что бесплатно / что по подписке» (app/Helpers/access-explainer.php) */
.db-access-explainer__heading {
  margin-bottom: 10px;
}
.db-access-explainer__lead {
  font-size: 16px;
  line-height: 1.55;
  color: #2C3E50;
  margin: 0 0 28px;
  max-width: 720px;
}
.db-access-explainer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}
@media (max-width: 767px) {
  .db-access-explainer__grid {
    grid-template-columns: 1fr;
  }
}
.db-access-explainer__col {
  padding: 24px 22px;
  border-radius: 16px;
  border: 1px solid #e8e8ee;
  background: #fafafc;
}
.db-access-explainer__col--premium {
  border-color: rgba(158, 82, 255, 0.35);
  background: linear-gradient(180deg, rgba(158, 82, 255, 0.06) 0%, #fafafc 55%);
}
.db-access-explainer__col_title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #26252E;
}
.db-access-explainer__col_intro {
  font-size: 14px;
  line-height: 1.5;
  color: #2C3E50;
  margin: 0 0 14px;
}
.db-access-explainer__list {
  margin: 0;
  padding-left: 1.2em;
  font-size: 15px;
  line-height: 1.55;
  color: #3a3945;
}
.db-access-explainer__list li {
  margin-bottom: 10px;
}
.db-access-explainer__list li:last-child {
  margin-bottom: 0;
}
.db-access-explainer__footnote {
  margin: 24px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: #2C3E50;
  max-width: 900px;
}

.db-shop-usps {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .db-shop-usps {
    grid-template-columns: 1fr;
  }
}
.db-shop-usps__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e8e8ee;
  background: #fafafc;
}
.db-shop-usps__icon {
  flex-shrink: 0;
  color: #533A71;
  margin-top: 2px;
}
.db-shop-usps__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.db-shop-usps__name {
  font-size: 16px;
  font-weight: 600;
  color: #26252E;
}
.db-shop-usps__desc {
  font-size: 14px;
  line-height: 1.5;
  color: #2C3E50;
}

.db-shop-sell-bottom {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 48px 0 80px;
}
@media (max-width: 767px) {
  .db-shop-sell-bottom {
    padding: 32px 0 60px;
    gap: 32px;
  }
}
.db-shop-sell-bottom .premium_cta_block,
.db-shop-sell-bottom .plans_compare {
  margin: 0;
}
.db-shop-sell-bottom__reviews .db-reviews {
  margin: 0;
}

.db-shop-trust__list {
  list-style: none;
  margin: 0;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 24px;
  background: linear-gradient(135deg, rgba(158, 82, 255, 0.07) 0%, rgba(158, 82, 255, 0.02) 100%);
  border: 1px solid rgba(158, 82, 255, 0.22);
  border-radius: 16px;
}
@media (max-width: 767px) {
  .db-shop-trust__list {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
.db-shop-trust__item {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.45;
  color: #444;
}
.db-shop-trust__item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #533A71;
}

/* Модальное окно обратной связи (Contact Form 7) */
.db-feedback-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}
.db-feedback-modal[hidden] {
  display: none !important;
}
.db-feedback-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 16, 22, 0.55);
  backdrop-filter: blur(4px);
}
.db-feedback-modal__dialog {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  max-width: min(540px, 100vw - 32px);
  min-width: 0;
  max-height: min(90vh, 800px);
  overflow-x: hidden;
  overflow-y: auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}
.db-feedback-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px 12px 24px;
  border-bottom: 1px solid #eee;
}
.db-feedback-modal__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #26252E;
  line-height: 1.25;
}
.db-feedback-modal__close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #f0f0f5;
  color: #333;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.db-feedback-modal__close:hover {
  background: #e4e4ec;
}
.db-feedback-modal__body {
  padding: 20px 24px 24px;
  box-sizing: border-box;
  min-width: 0;
  width: 100%;
}
.db-feedback-modal__notice {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #555;
}
.db-feedback-modal {
  /* CF7 вешает html_class на сам <form>, не на обёртку — стили только от .db-feedback-modal */
}
.db-feedback-modal .wpcf7 {
  margin: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.db-feedback-modal .wpcf7-form {
  margin: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.db-feedback-modal .wpcf7-form p {
  margin: 0 0 16px;
}
.db-feedback-modal .wpcf7-form p:last-of-type {
  margin-bottom: 0;
}
.db-feedback-modal .wpcf7-form label {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  line-height: 1.35;
}
.db-feedback-modal .wpcf7-form .wpcf7-form-control-wrap {
  display: block !important;
  width: 100% !important;
  max-width: 100%;
  box-sizing: border-box;
  margin-top: 8px;
}
.db-feedback-modal .wpcf7-form label .wpcf7-form-control-wrap {
  margin-top: 8px;
}
.db-feedback-modal .wpcf7-form input.wpcf7-form-control:not(.wpcf7-submit),
.db-feedback-modal .wpcf7-form textarea.wpcf7-form-control,
.db-feedback-modal .wpcf7-form input[type=text],
.db-feedback-modal .wpcf7-form input[type=email],
.db-feedback-modal .wpcf7-form input[type=url],
.db-feedback-modal .wpcf7-form input[type=tel],
.db-feedback-modal .wpcf7-form input[type=number],
.db-feedback-modal .wpcf7-form textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid #d8d8e4;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  line-height: 1.4;
  background-color: #fff;
  color: #26252E;
  -webkit-appearance: none;
  appearance: none;
}
.db-feedback-modal .wpcf7-form {
  /* Один слой фона: цвет + стрелка (не смешивать background с отдельным background-image) */
}
.db-feedback-modal .wpcf7-form select.wpcf7-form-control,
.db-feedback-modal .wpcf7-form select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px 40px 12px 14px;
  border: 1px solid #d8d8e4;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  line-height: 1.4;
  color: #26252E;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath stroke='%23555' stroke-linecap='round' stroke-width='2' d='m1 1 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
}
.db-feedback-modal .wpcf7-form textarea.wpcf7-form-control,
.db-feedback-modal .wpcf7-form textarea {
  min-height: 120px;
  resize: vertical;
  vertical-align: top;
}
.db-feedback-modal .wpcf7-form input.wpcf7-form-control:focus,
.db-feedback-modal .wpcf7-form select.wpcf7-form-control:focus,
.db-feedback-modal .wpcf7-form textarea.wpcf7-form-control:focus,
.db-feedback-modal .wpcf7-form input:focus,
.db-feedback-modal .wpcf7-form select:focus,
.db-feedback-modal .wpcf7-form textarea:focus {
  outline: none;
  border-color: rgba(158, 82, 255, 0.65);
  box-shadow: 0 0 0 3px rgba(158, 82, 255, 0.15);
}
.db-feedback-modal .wpcf7-form input.wpcf7-submit,
.db-feedback-modal .wpcf7-form button.wpcf7-submit,
.db-feedback-modal .wpcf7-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 160px;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  background: #533A71;
  color: #fff !important;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
  margin-top: 8px;
  line-height: 1.25;
  box-shadow: none;
  transition: opacity 0.2s ease, transform 0.15s ease, filter 0.2s ease;
}
.db-feedback-modal .wpcf7-form input.wpcf7-submit:hover,
.db-feedback-modal .wpcf7-form button.wpcf7-submit:hover,
.db-feedback-modal .wpcf7-form .wpcf7-submit:hover {
  opacity: 0.94;
  filter: brightness(1.05);
}
.db-feedback-modal .wpcf7-form .wpcf7-spinner {
  margin-left: 10px;
  vertical-align: middle;
}
.db-feedback-modal .wpcf7-form .wpcf7-response-output {
  margin: 14px 0 0;
  padding: 12px 14px;
  border: 1px solid #e0e0e8;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.45;
}
.db-feedback-modal .wpcf7-form .wpcf7-response-output.wpcf7-validation-errors {
  border-color: #e8b4b4;
  background: #fff8f8;
  color: #8a2a2a;
}
.db-feedback-modal .wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  border-color: #b8e0c8;
  background: #f4fbf6;
  color: #1e6b3a;
}
.db-feedback-modal .wpcf7-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #c62828;
}
.db-feedback-modal .wpcf7-form .wpcf7-not-valid {
  border-color: #e57373 !important;
}

/* Тост после успешной отправки формы обратной связи (CF7) */
.db-feedback-toast {
  position: fixed;
  left: 50%;
  bottom: max(24px, env(safe-area-inset-bottom, 0px));
  z-index: 100010;
  width: min(420px, 100vw - 32px);
  transform: translateX(-50%);
  box-sizing: border-box;
}
.db-feedback-toast[hidden] {
  display: none !important;
}
.db-feedback-toast__panel {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 14px 16px 18px;
  border-radius: 18px;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 12px 48px rgba(15, 16, 22, 0.14), 0 0 0 1px rgba(76, 217, 100, 0.22), 0 0 32px rgba(76, 217, 100, 0.12);
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.db-feedback-toast.is-visible .db-feedback-toast__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.db-feedback-toast__icon {
  flex-shrink: 0;
  line-height: 0;
}
.db-feedback-toast__svg {
  display: block;
  width: 40px;
  height: 40px;
}
.db-feedback-toast__text {
  flex: 1 1 auto;
  min-width: 0;
  padding-top: 2px;
}
.db-feedback-toast__title {
  display: block;
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a22;
  line-height: 1.3;
}
.db-feedback-toast__msg {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #555;
}
.db-feedback-toast__close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  margin: -4px -4px -4px 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #888;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.db-feedback-toast__close:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #333;
}
@media (prefers-reduced-motion: reduce) {
  .db-feedback-toast__panel {
    transition: none;
  }
  .db-feedback-toast.is-visible .db-feedback-toast__panel {
    opacity: 1;
    transform: none;
  }
}

html.db-feedback-modal-open body {
  overflow: hidden;
}

@media (max-width: 480px) {
  .fc .fc-toolbar {
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .fc-toolbar-chunk {
    display: flex;
    justify-content: space-between;
  }
}

@media (max-width: 1200px) {
  #primary {
    padding: 0 15px;
  }
}

@media (max-width: 640px) {
  .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
    width: 100%;
  }
}

.woocommerce-page .single_page {
  padding: 100px 0 0;
}

/* Страница «Спасибо за заказ» */
.thankyou_page {
  padding: 80px 0 60px;
}
@media (max-width: 768px) {
  .thankyou_page {
    padding: 40px 15px 40px;
  }
}
.thankyou_page .thankyou_content {
  max-width: 720px;
  margin: 0 auto;
}
.thankyou_page .thankyou_title {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1.2;
}
@media (max-width: 640px) {
  .thankyou_page .thankyou_title {
    font-size: 1.5rem;
  }
}
.thankyou_page .thankyou_lead {
  margin: 0 0 36px;
  font-size: 1.1rem;
  opacity: 0.9;
}
.thankyou_page .thankyou_order_ref {
  display: inline;
  white-space: nowrap;
  font-weight: 600;
  opacity: 1;
  color: #533A71;
}
.thankyou_page .thankyou_block {
  margin: 0 0 32px;
}
.thankyou_page .thankyou_block_title {
  margin: 0 0 16px;
  font-size: 1.25rem;
}
.thankyou_page .thankyou_feature_list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.thankyou_page .thankyou_feature_item {
  padding: 8px 0;
  padding-left: 1.5em;
  position: relative;
}
.thankyou_page .thankyou_feature_item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #533A71;
}
.thankyou_page .thankyou_benefits_list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.thankyou_page .thankyou_benefits_list li {
  padding: 6px 0;
  padding-left: 1.5em;
  position: relative;
}
.thankyou_page .thankyou_benefits_list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent, #4a9);
}
.thankyou_page .thankyou_links {
  margin: 36px 0 0;
}
.thankyou_page .thankyou_links_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin: 0;
}
.thankyou_page .thankyou_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.25;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.12s ease;
  box-sizing: border-box;
  border: 2px solid transparent;
}
.thankyou_page .thankyou_link--primary {
  background: #533A71;
  border-color: #533A71;
  color: #fff;
  box-shadow: 0 6px 20px rgba(83, 58, 113, 0.35);
}
.thankyou_page .thankyou_link--primary:hover {
  background: rgb(68.1473684211, 47.6210526316, 92.7789473684);
  border-color: rgb(68.1473684211, 47.6210526316, 92.7789473684);
  color: #fff;
  box-shadow: 0 8px 26px rgba(83, 58, 113, 0.42);
  transform: translateY(-1px);
}
.thankyou_page .thankyou_link--primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(83, 58, 113, 0.35), 0 6px 20px rgba(83, 58, 113, 0.35);
}
.thankyou_page .thankyou_link--secondary {
  background: rgba(83, 58, 113, 0.08);
  border-color: rgba(83, 58, 113, 0.45);
  color: #533A71;
}
.thankyou_page .thankyou_link--secondary:hover {
  background: rgba(83, 58, 113, 0.14);
  border-color: #533A71;
  color: rgb(63.1964912281, 44.1614035088, 86.0385964912);
  transform: translateY(-1px);
}
.thankyou_page .thankyou_link--secondary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(83, 58, 113, 0.22);
}
.thankyou_page .thankyou_extra {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Страница «Компаниям» (корпоративная подписка) */
.db-corporate-page {
  position: relative;
  overflow-x: clip;
  padding: 0 0 88px;
}
@media (max-width: 768px) {
  .db-corporate-page {
    padding-bottom: 64px;
  }
}
.db-corporate-page::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: min(420px, 55vh);
  background: radial-gradient(ellipse 90% 80% at 15% -10%, rgba(83, 58, 113, 0.16) 0%, transparent 55%), radial-gradient(ellipse 70% 60% at 100% 20%, rgba(97, 132, 216, 0.12) 0%, transparent 50%), radial-gradient(ellipse 50% 40% at 50% 100%, rgba(80, 197, 183, 0.08) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}
.db-corporate-page > * {
  position: relative;
  z-index: 1;
}

.db-corporate-hero-shell {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 40px max(15px, 50vw - 50%) 48px;
  margin-bottom: 8px;
  background: linear-gradient(180deg, rgba(83, 58, 113, 0.06) 0%, transparent 100%);
}
@media (max-width: 768px) {
  .db-corporate-hero-shell {
    padding-top: 28px;
    padding-bottom: 32px;
  }
}

.db-corporate-hero-panel {
  max-width: 920px;
  margin: 0 auto;
  padding: 36px 32px 40px;
  border-radius: 24px;
  border: 1px solid rgba(83, 58, 113, 0.14);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(250, 248, 255, 0.98) 100%);
  box-shadow: 0 4px 24px rgba(83, 58, 113, 0.08), 0 24px 64px rgba(38, 37, 46, 0.06), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
@media (max-width: 640px) {
  .db-corporate-hero-panel {
    padding: 26px 20px 30px;
    border-radius: 20px;
  }
}

.db-corporate-page__main {
  padding: 40px 15px;
}

.db-corporate-eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #533A71;
}

.db-corporate-hero {
  max-width: 100%;
  margin: 0;
  text-align: center;
}
@media (max-width: 640px) {
  .db-corporate-hero {
    text-align: left;
  }
}
.db-corporate-hero__title {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 4.2vw, 2.5rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, rgb(63.1964912281, 44.1614035088, 86.0385964912) 0%, #6184D8 55%, rgb(49.9098712446, 150.5901287554, 138.5429184549) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@supports not (-webkit-background-clip: text) {
  .db-corporate-hero__title {
    color: #533A71;
    background: none;
  }
}
.db-corporate-hero__lead {
  margin: 0 0 28px;
  font-size: 1.09rem;
  line-height: 1.58;
  color: rgba(44, 62, 80, 0.92);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 640px) {
  .db-corporate-hero__lead {
    margin-left: 0;
    margin-right: 0;
  }
}
.db-corporate-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 640px) {
  .db-corporate-hero__cta {
    justify-content: flex-start;
  }
}
.db-corporate-hero__cta--compact {
  margin-top: 8px;
}

.db-corporate-section--why {
  max-width: 100%;
}

.db-corporate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.12s ease;
  box-sizing: border-box;
}
.db-corporate-btn--primary {
  background: #533A71;
  border-color: #533A71;
  color: #fff;
  box-shadow: 0 6px 20px rgba(83, 58, 113, 0.35);
}
.db-corporate-btn--primary:hover {
  background: rgb(68.1473684211, 47.6210526316, 92.7789473684);
  border-color: rgb(68.1473684211, 47.6210526316, 92.7789473684);
  color: #fff;
  transform: translateY(-1px);
}
.db-corporate-btn--primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(83, 58, 113, 0.35), 0 6px 20px rgba(83, 58, 113, 0.35);
}
.db-corporate-btn--secondary {
  background: rgba(83, 58, 113, 0.08);
  border-color: rgba(83, 58, 113, 0.45);
  color: #533A71;
}
.db-corporate-btn--secondary:hover {
  background: rgba(83, 58, 113, 0.14);
  border-color: #533A71;
  color: rgb(63.1964912281, 44.1614035088, 86.0385964912);
  transform: translateY(-1px);
}
.db-corporate-btn--secondary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(83, 58, 113, 0.22);
}
.db-corporate-btn--ghost {
  background: transparent;
  border-color: transparent;
  color: #533A71;
  text-decoration: underline;
  text-underline-offset: 4px;
  min-height: auto;
  padding: 8px 12px;
  box-shadow: none;
}
.db-corporate-btn--ghost:hover {
  color: rgb(58.2456140351, 40.701754386, 79.298245614);
  transform: none;
}

.db-corporate-section {
  margin: 0 auto 56px;
  max-width: 900px;
}
.db-corporate-section__head {
  margin-bottom: 6px;
}
.db-corporate-section__title {
  position: relative;
  display: inline-block;
  margin: 0 0 12px;
  padding-bottom: 12px;
  font-size: 1.5rem;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.db-corporate-section__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #533A71, #6184D8);
}
.db-corporate-section__intro {
  margin: 0 0 26px;
  font-size: 1.04rem;
  line-height: 1.58;
  opacity: 0.9;
  max-width: 52em;
}
.db-corporate-section--how {
  max-width: 760px;
}
.db-corporate-section--includes {
  max-width: 720px;
}

.db-corporate-panel {
  padding: 22px 22px 12px;
  border-radius: 20px;
  border: 1px solid rgba(83, 58, 113, 0.14);
  background: radial-gradient(120% 80% at 0% 0%, rgba(83, 58, 113, 0.07) 0%, transparent 55%), linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(250, 248, 255, 0.9) 100%);
  box-shadow: 0 8px 32px rgba(83, 58, 113, 0.06);
}

.db-corporate-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.db-corporate-card {
  position: relative;
  padding: 22px 20px 22px 22px;
  border-radius: 20px;
  border-width: 1px;
  border-style: solid;
  box-shadow: 0 6px 22px rgba(38, 37, 46, 0.06), 0 1px 0 rgba(255, 255, 255, 0.75) inset;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.db-corporate-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(83, 58, 113, 0.12), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}
.db-corporate-card__mark {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}
.db-corporate-card--tint-0 {
  border-color: rgba(83, 58, 113, 0.2);
  background: linear-gradient(160deg, rgba(83, 58, 113, 0.1) 0%, rgba(255, 255, 255, 0.92) 45%);
}
.db-corporate-card--tint-0 .db-corporate-card__mark {
  background: linear-gradient(135deg, #533A71 0%, rgb(112.7052631579, 78.7578947368, 153.4421052632) 100%);
}
.db-corporate-card--tint-1 {
  border-color: rgba(97, 132, 216, 0.22);
  background: linear-gradient(165deg, rgba(97, 132, 216, 0.09) 0%, rgba(255, 255, 255, 0.95) 50%);
}
.db-corporate-card--tint-1 .db-corporate-card__mark {
  background: linear-gradient(135deg, #6184D8 0%, rgb(129.7228426396, 157.4741116751, 224.0771573604) 100%);
}
.db-corporate-card--tint-2 {
  border-color: rgba(80, 197, 183, 0.35);
  background: linear-gradient(155deg, rgba(80, 197, 183, 0.12) 0%, rgba(255, 255, 255, 0.94) 48%);
}
.db-corporate-card--tint-2 .db-corporate-card__mark {
  background: linear-gradient(135deg, rgb(58.7965665236, 177.4034334764, 163.2111587983) 0%, #50C5B7 100%);
}
.db-corporate-card--tint-3 {
  border-color: rgba(236, 72, 153, 0.2);
  background: linear-gradient(150deg, rgba(251, 207, 232, 0.35) 0%, rgba(255, 255, 255, 0.96) 50%);
}
.db-corporate-card--tint-3 .db-corporate-card__mark {
  background: linear-gradient(135deg, #db2777 0%, #f472b6 100%);
}
.db-corporate-card--tint-4 {
  border-color: rgba(245, 158, 11, 0.35);
  background: linear-gradient(165deg, rgba(254, 243, 199, 0.65) 0%, rgba(255, 255, 255, 0.96) 52%);
}
.db-corporate-card--tint-4 .db-corporate-card__mark {
  background: linear-gradient(135deg, #d97706 0%, #fbbf24 100%);
}
.db-corporate-card--tint-5 {
  border-color: rgba(16, 185, 129, 0.3);
  background: linear-gradient(160deg, rgba(167, 243, 208, 0.4) 0%, rgba(255, 255, 255, 0.95) 50%);
}
.db-corporate-card--tint-5 .db-corporate-card__mark {
  background: linear-gradient(135deg, #059669 0%, #34d399 100%);
}
.db-corporate-card__title {
  margin: 0 0 10px;
  font-size: 1.06rem;
  font-weight: 700;
}
.db-corporate-card__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.52;
  opacity: 0.9;
}

.db-corporate-steps {
  list-style: none;
  margin: 8px 0 0;
  padding: 0 0 0 8px;
  position: relative;
}
.db-corporate-steps::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 52px;
  bottom: 52px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(83, 58, 113, 0.35) 0%, rgba(97, 132, 216, 0.2) 100%);
}
@media (max-width: 480px) {
  .db-corporate-steps::before {
    left: 22px;
  }
}
.db-corporate-steps li {
  display: flex;
  gap: 20px;
  margin: 0 0 26px;
  align-items: flex-start;
  position: relative;
}
.db-corporate-steps li:last-child {
  margin-bottom: 0;
}
.db-corporate-steps p {
  margin: 6px 0 0;
  font-size: 0.98rem;
  line-height: 1.55;
  opacity: 0.9;
}
.db-corporate-steps strong {
  font-size: 1.06rem;
  font-weight: 700;
}
.db-corporate-steps__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(145deg, #533A71 0%, rgb(97.8526315789, 68.3789473684, 133.2210526316) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(83, 58, 113, 0.35);
  z-index: 1;
}

.db-corporate-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.db-corporate-checklist li {
  padding: 11px 0 11px 1.65em;
  position: relative;
  font-size: 1rem;
  line-height: 1.48;
  border-bottom: 1px solid rgba(83, 58, 113, 0.08);
}
.db-corporate-checklist li:last-child {
  border-bottom: none;
}
.db-corporate-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #533A71;
  font-weight: 700;
}

.db-corporate-bullets {
  margin: 0;
  padding-left: 1.2em;
  font-size: 1rem;
  line-height: 1.6;
}
.db-corporate-bullets li {
  margin: 0 0 10px;
}

.db-corporate-faq {
  max-width: 100%;
}
.db-corporate-faq__list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.db-corporate-faq__item {
  margin: 0;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(83, 58, 113, 0.12);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 4px 20px rgba(38, 37, 46, 0.04);
}
.db-corporate-faq dt {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 1.03rem;
  color: rgba(44, 62, 80, 0.95);
}
.db-corporate-faq dd {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  opacity: 0.88;
}

.db-corporate-extra {
  max-width: 720px;
  margin: 0 auto 40px;
  padding-top: 8px;
}

.db-corporate-cta-final {
  margin: 56px auto 0;
  max-width: 720px;
}
.db-corporate-cta-final__inner {
  padding: 36px 32px;
  border-radius: 24px;
  background: radial-gradient(100% 80% at 10% 0%, rgba(83, 58, 113, 0.18) 0%, transparent 55%), linear-gradient(135deg, rgba(83, 58, 113, 0.14) 0%, rgba(97, 132, 216, 0.12) 50%, rgba(80, 197, 183, 0.08) 100%);
  border: 1px solid rgba(83, 58, 113, 0.22);
  text-align: center;
  box-shadow: 0 12px 40px rgba(83, 58, 113, 0.12), 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}
@media (max-width: 640px) {
  .db-corporate-cta-final__inner {
    padding: 26px 20px;
    text-align: left;
  }
}
.db-corporate-cta-final__title {
  margin: 0 0 12px;
  font-size: 1.4rem;
  font-weight: 800;
}
.db-corporate-cta-final__text {
  margin: 0 0 22px;
  font-size: 1.02rem;
  line-height: 1.52;
  opacity: 0.9;
}

/* Главная: тизер корпоративной подписки */
.db-front-corporate {
  padding-top: 8px;
  padding-bottom: 8px;
}
@media (max-width: 1200px) {
  .db-front-corporate {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.db-front-corporate__inner {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 320px);
  gap: 28px 40px;
  align-items: center;
  padding: 28px 28px 32px;
  border-radius: 24px;
  border: 1px solid rgba(83, 58, 113, 0.16);
  background: radial-gradient(90% 70% at 0% 0%, rgba(83, 58, 113, 0.12) 0%, transparent 55%), radial-gradient(70% 60% at 100% 100%, rgba(97, 132, 216, 0.1) 0%, transparent 50%), linear-gradient(155deg, #faf8ff 0%, #f3f0ff 38%, #ffffff 100%);
  box-shadow: 0 8px 32px rgba(83, 58, 113, 0.08), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
@media (max-width: 900px) {
  .db-front-corporate__inner {
    grid-template-columns: 1fr;
    padding: 24px 20px 28px;
  }
}
.db-front-corporate__eyebrow {
  margin: 0 0 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #533A71;
}
.db-front-corporate__title {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.db-front-corporate__lead {
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.55;
  opacity: 0.9;
  max-width: 36em;
}
.db-front-corporate__highlights {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.db-front-corporate__highlights li {
  position: relative;
  padding: 6px 0 6px 1.45em;
  font-size: 0.96rem;
  line-height: 1.45;
}
.db-front-corporate__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #533A71, #6184D8);
}
.db-front-corporate__cta {
  display: inline-flex;
  justify-content: center;
}
.db-front-corporate__visual {
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .db-front-corporate__visual {
    min-height: 160px;
    order: -1;
  }
}
.db-front-corporate__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5px);
}
.db-front-corporate__orb--1 {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 30% 30%, rgba(83, 58, 113, 0.35) 0%, rgba(83, 58, 113, 0.05) 70%);
  top: 10%;
  right: 8%;
}
.db-front-corporate__orb--2 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at 70% 70%, rgba(97, 132, 216, 0.3) 0%, rgba(97, 132, 216, 0.04) 65%);
  bottom: 5%;
  left: 5%;
}
.db-front-corporate__badge {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px 24px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 248, 255, 0.98) 100%);
  border: 1px solid rgba(83, 58, 113, 0.18);
  box-shadow: 0 10px 28px rgba(83, 58, 113, 0.12);
}
.db-front-corporate__badge-label {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: linear-gradient(120deg, #533A71, #6184D8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@supports not (-webkit-background-clip: text) {
  .db-front-corporate__badge-label {
    color: #533A71;
  }
}
.db-front-corporate__badge-hint {
  margin-top: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.75;
}

/* Главная: тизер для тренеров */
.db-front-trainers {
  padding-top: 8px;
  padding-bottom: 8px;
}
@media (max-width: 1200px) {
  .db-front-trainers {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.db-front-trainers__inner {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 320px);
  gap: 28px 40px;
  align-items: center;
  padding: 28px 28px 32px;
  border-radius: 24px;
  border: 1px solid rgba(80, 197, 183, 0.35);
  background: radial-gradient(90% 70% at 100% 0%, rgba(80, 197, 183, 0.14) 0%, transparent 55%), radial-gradient(70% 60% at 0% 100%, rgba(97, 132, 216, 0.1) 0%, transparent 50%), linear-gradient(155deg, #f0fdf9 0%, #ecfeff 38%, #ffffff 100%);
  box-shadow: 0 8px 32px rgba(80, 197, 183, 0.1), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
@media (max-width: 900px) {
  .db-front-trainers__inner {
    grid-template-columns: 1fr;
    padding: 24px 20px 28px;
  }
}
.db-front-trainers__eyebrow {
  margin: 0 0 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(46.1012875536, 139.0987124464, 127.9708154506);
}
.db-front-trainers__title {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.db-front-trainers__lead {
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.55;
  opacity: 0.9;
  max-width: 36em;
}
.db-front-trainers__highlights {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.db-front-trainers__highlights li {
  position: relative;
  padding: 6px 0 6px 1.45em;
  font-size: 0.96rem;
  line-height: 1.45;
}
.db-front-trainers__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #50C5B7, #6184D8);
}
.db-front-trainers__cta {
  display: inline-flex;
  justify-content: center;
}
.db-front-trainers__visual {
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .db-front-trainers__visual {
    min-height: 160px;
    order: -1;
  }
}
.db-front-trainers__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5px);
}
.db-front-trainers__orb--1 {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 30% 30%, rgba(80, 197, 183, 0.4) 0%, rgba(80, 197, 183, 0.06) 70%);
  top: 10%;
  right: 8%;
}
.db-front-trainers__orb--2 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at 70% 70%, rgba(97, 132, 216, 0.28) 0%, rgba(97, 132, 216, 0.05) 65%);
  bottom: 5%;
  left: 5%;
}
.db-front-trainers__badge {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px 24px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 253, 250, 0.98) 100%);
  border: 1px solid rgba(80, 197, 183, 0.35);
  box-shadow: 0 10px 28px rgba(80, 197, 183, 0.14);
}
.db-front-trainers__badge-label {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: linear-gradient(120deg, rgb(53.7184549356, 162.0815450644, 149.1150214592), #6184D8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@supports not (-webkit-background-clip: text) {
  .db-front-trainers__badge-label {
    color: rgb(53.7184549356, 162.0815450644, 149.1150214592);
  }
}
.db-front-trainers__badge-hint {
  margin-top: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.75;
}

.archive {
  padding: 100px 0 0;
}
@media (max-width: 1200px) {
  .archive {
    padding: 100px 15px 0;
  }
}
.archive.woocommerce-page {
  padding: 100px 0 0;
}
.archive .archive_inner {
  display: flex;
  gap: 20px;
}
@media (max-width: 1100px) {
  .archive .archive_inner {
    flex-wrap: wrap;
  }
}
.archive .archive_inner .sidebar {
  width: 250px;
  margin: 0 0 20px;
}
@media (max-width: 1100px) {
  .archive .archive_inner .sidebar {
    width: 100%;
  }
}
.archive .archive_inner .main_area {
  width: calc(100% - 200px);
}
@media (max-width: 1100px) {
  .archive .archive_inner .main_area {
    width: 100%;
  }
}

.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
  width: 100%;
}

.woocommerce-info, .woocommerce-message, .woocommerce-error {
  padding: 14px 16px 14px 50px;
}

.archive_hero {
  margin: 0 0 50px;
}
.archive_hero .promo_block {
  display: flex;
  gap: 2%;
  justify-content: space-between;
}
.archive_hero .promo_block .blog_grid_item_category {
  position: static;
  margin: 0 0 10px;
}
.archive_hero .promo_block .promo_post {
  width: 49%;
  padding: 20px 20px;
  background: rgba(158, 82, 255, 0.1);
  border-radius: 20px;
}
.archive_hero .promo_block .promo_post_thumbnail {
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin: 0 0 20px;
  display: block;
}
.archive_hero .promo_block .promo_post_thumbnail img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.archive_hero .promo_block .promo_post_meta {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: auto;
  background: rgba(0, 0, 0, 0.7);
  padding: 20px 20px;
}
.archive_hero .promo_block .promo_post_title {
  color: #fff;
  font-size: 20px;
  position: relative;
  padding: 0 0 0 10px;
}
.archive_hero .promo_block .promo_post_title:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #9CEC5B;
}
.archive_hero .promo_block .promo_post_excerpt {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.archive_hero .promo_block .promo_post_info {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 0 0 10px;
  color: #fff;
}
.archive_hero .promo_block .promo_post_date {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  gap: 5px;
}
.archive_hero .promo_block .promo_post_author {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 12px;
}
.archive_hero .promo_block .promo_post_author .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}
.archive_hero .promo_block .promo_post_author .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .archive_hero .promo_block .promo_post {
    display: none;
  }
}
.archive_hero .promo_block .archive_info {
  width: 49%;
  background: rgba(150, 150, 200, 0.2);
  padding: 20px 20px;
  border-radius: 20px;
}
@media (max-width: 1024px) {
  .archive_hero .promo_block .archive_info {
    width: 100%;
  }
}
.archive_hero .promo_block .author_promo {
  display: flex;
  gap: 5%;
}
@media (max-width: 480px) {
  .archive_hero .promo_block .author_promo {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.archive_hero .promo_block .author_info {
  width: 30%;
}
.archive_hero .promo_block .author_info .author_name {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 480px) {
  .archive_hero .promo_block .author_info {
    width: 100%;
  }
}
.archive_hero .promo_block .author_photo {
  margin: 0 0 10px;
}
.archive_hero .promo_block .author_bio {
  width: 65%;
  font-size: 14px;
}
@media (max-width: 480px) {
  .archive_hero .promo_block .author_bio {
    width: 100%;
  }
}
.archive_hero .promo_block .author_bio p {
  margin: 0 0 10px;
  line-height: 1.4;
}
.archive_hero .promo_block .archive_title {
  font-size: 24px;
  margin: 0 0 20px;
}
@media (max-width: 640px) {
  .archive_hero .promo_block .archive_title {
    margin: 0;
  }
}
@media (max-width: 640px) {
  .archive_hero .promo_block .archive_description {
    display: none;
  }
}
.archive_hero .promo_block .archive_description p {
  margin: 0 0 10px;
  line-height: 1.4;
  font-size: 14px;
}

.filter {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.filter_block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.filter_title {
  color: #2C3E50;
  font-size: 18px;
  font-weight: bold;
}
.filter_box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.filter_box_row {
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}
.filter_box_row .filter_checkbox {
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.filter_box_row.active .filter_checkbox {
  background: url("data:image/svg+xml,%3Csvg width='20px' height='20px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath d='M4 12.6111L8.92308 17.5L20 6.5' stroke='%2349D060' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/g%3E%3C/svg%3E") center center no-repeat;
}
.filter_box_row .filter_box_title {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 1100px) {
  .filter.desktop {
    display: none;
  }
}
.filter.mobile {
  display: none;
}
@media (max-width: 1100px) {
  .filter.mobile {
    display: flex;
  }
}

.filter_term_count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #8C53FF;
  background: rgba(140, 83, 255, 0.15);
}

html.theme-dark .filter_term_count {
  color: #b8a0ff;
  background: rgba(184, 160, 255, 0.15);
}

.blocked {
  opacity: 0.5;
  pointer-events: none;
}

.front_blog .title {
  margin-bottom: 40px;
}

.blog_grid {
  display: flex;
  gap: 5%;
  row-gap: 60px;
  flex-wrap: wrap;
  margin: 0 0 40px;
}
.blog_grid_item {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.blog_grid_item_image {
  border-radius: 20px;
  height: 230px;
  overflow: hidden;
  position: relative;
}
.blog_grid_item_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog_grid_item_date {
  color: #888;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog_grid_item_title {
  color: #111;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
}
.blog_grid_item_title a {
  color: inherit;
}
.blog_grid_item_title a:hover {
  text-decoration: underline;
}
.blog_grid_item_excerpt {
  color: #2C3E50;
  line-height: 1.5;
  font-size: 14px;
}
.blog_grid_item_meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog_grid_item_meta .avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
}
.blog_grid_item_meta .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog_grid_item_meta a {
  font-size: 12px;
  color: #333;
  text-decoration: underline;
}
.blog_grid_item_meta a:hover {
  text-decoration: none;
}
.blog_grid_item_author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.blog_grid_item_category {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 10px;
}
.blog_grid_item_category span {
  display: inline-flex;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
}
@media (max-width: 800px) {
  .blog_grid_item {
    width: 48%;
  }
}
@media (max-width: 480px) {
  .blog_grid_item {
    width: 100%;
    border-bottom: 1px solid #eee;
    padding: 0 0 20px;
  }
}
.blog_grid.front_blog_grid {
  gap: 28px;
  row-gap: 48px;
  margin: 0 0 60px;
}
@media (max-width: 800px) {
  .blog_grid.front_blog_grid {
    gap: 20px;
    row-gap: 36px;
  }
  .blog_grid.front_blog_grid .blog_grid_item {
    width: calc(50% - 10px);
    margin: 0;
  }
}
@media (max-width: 540px) {
  .blog_grid.front_blog_grid {
    row-gap: 32px;
  }
  .blog_grid.front_blog_grid .blog_grid_item {
    width: 100%;
  }
}

.categories_block {
  display: flex;
  gap: 40px;
  padding: 15px 0;
  margin: 0 0 40px;
  border-bottom: 1px solid #ccc;
}
.categories_block .category_link {
  color: #2C3E50;
  font-size: 18px;
  font-weight: 300;
}
.categories_block .category_link.active {
  color: #533A71;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .categories_block .category_link {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .categories_block {
    overflow-x: scroll;
  }
}

.pagination {
  padding: 54px 0;
}
.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pagination .nav-links a, .pagination .nav-links span {
  display: inline-flex;
  height: 40px;
  width: 40px;
  border-radius: 12px;
  border: 1px solid rgba(158, 82, 255, 0.25);
  justify-content: center;
  align-items: center;
  color: #2C3E50;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.75);
}
.pagination .nav-links a:hover {
  background: rgba(158, 82, 255, 0.1);
  border-color: rgba(158, 82, 255, 0.6);
}
.pagination .nav-links .page-numbers.current {
  background: rgba(184, 160, 255, 0.18);
  border-color: rgba(184, 160, 255, 0.65);
  color: #fff;
}
.pagination .nav-links .page-numbers.dots {
  background: transparent;
  border-color: transparent;
  width: auto;
  padding: 0 10px;
}

.programs_load_more_wrap {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.programs_load_more_btn {
  min-width: 220px;
  padding: 14px 22px;
  border-radius: 14px;
}

@media (max-width: 480px) {
  .programs_load_more_wrap {
    margin-top: 12px;
  }
  .programs_load_more_btn {
    width: 100%;
    max-width: 360px;
  }
}
html.theme-dark .pagination .nav-links a, html.theme-dark .pagination .nav-links span {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: #e8e8f0;
}
html.theme-dark .pagination .nav-links a:hover {
  background: rgba(184, 160, 255, 0.12);
  border-color: rgba(184, 160, 255, 0.35);
}
html.theme-dark .pagination .nav-links .page-numbers.current {
  background: rgba(184, 160, 255, 0.2);
  border-color: rgba(184, 160, 255, 0.55);
  color: #fff;
}
html.theme-dark .pagination .nav-links .page-numbers.dots {
  background: transparent;
  border-color: transparent;
  width: auto;
  padding: 0 10px;
}

@media (max-width: 480px) {
  .pagination {
    padding: 28px 0;
  }
  .pagination .nav-links {
    gap: 8px;
  }
  .pagination .nav-links a, .pagination .nav-links span {
    height: 36px;
    width: 36px;
    border-radius: 10px;
    font-size: 15px;
  }
}
.front_padding {
  padding: 100px 0;
}
@media (max-width: 1200px) {
  .front_padding {
    padding: 30px 15px;
  }
}

.faq .title {
  margin-bottom: 40px;
}
.faq_list {
  max-width: 800px;
  margin: 0 auto;
}
.faq_item {
  border-bottom: 1px solid #eee;
}
.faq_item:first-child {
  border-top: 1px solid #eee;
}
.faq_question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: inherit;
  transition: color 0.2s;
}
.faq_question:hover {
  color: #533A71;
}
.faq_question[aria-expanded=true] .faq_icon {
  transform: rotate(180deg);
}
.faq_icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.2s;
}
.faq_answer {
  overflow: hidden;
}
.faq_answer_inner {
  padding: 0 0 20px 0;
  font-size: 15px;
  line-height: 1.6;
}

.settings_time_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cabinet_settings .settings_login_display {
  background: #f0eff8;
  color: #555;
  cursor: not-allowed;
}

.settings_password_row {
  display: block;
  margin-bottom: 12px;
}
.settings_password_row:last-of-type {
  margin-bottom: 0;
}
.settings_password_row .settings_password_label {
  display: block;
  font-size: 13px;
  color: #555;
  margin-bottom: 4px;
}
.settings_password_row .daybooster_input {
  width: 100%;
}

.settings_time_row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #f7f6ff;
  box-shadow: 0 0 0 1px rgba(111, 66, 193, 0.06);
}

.settings_time_label {
  font-size: 13px;
  font-weight: 500;
  color: #555;
  white-space: nowrap;
}

.settings_time_input {
  height: 38px;
  padding: 0 10px;
  border-radius: 6px;
  border: 1px solid #d3d0ff;
  background: #fff;
  font-size: 14px;
  color: #111;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.settings_time_input:focus {
  border-color: #533A71;
  box-shadow: 0 0 0 1px rgba(111, 66, 193, 0.25);
  background: #fff;
}

@media (max-width: 600px) {
  .settings_time_wrap {
    flex-direction: column;
    align-items: stretch;
  }
  .settings_time_row {
    width: 100%;
    justify-content: space-between;
  }
}
.ways_grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2%;
  row-gap: 40px;
}
.ways_grid .way {
  width: 48%;
  background: #fff;
  padding: 30px 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 640px) {
  .ways_grid .way {
    width: 100%;
    padding: 20px 20px;
  }
}
.ways_grid .way.best {
  width: 100%;
}
.ways_grid .way_list ul {
  list-style: none;
  padding: 0;
}
.ways_grid .way_list ul li {
  position: relative;
  display: flex;
  gap: 10px;
  padding: 0 0 0 30px;
}
.ways_grid .way_list ul li:before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 3px;
  left: 0;
  background: center center no-repeat;
  background-size: 100% 100%;
}
.ways_grid .way .way_pluses li:before {
  background-image: url("data:image/svg+xml,%3Csvg width='20px' height='20px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath d='M4 12.6111L8.92308 17.5L20 6.5' stroke='%2349D060' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}
.ways_grid .way .way_minuses li:before {
  background-image: url("data:image/svg+xml,%3Csvg width='20px' height='20px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath d='M15 12H9' stroke='%23FF3A2D' stroke-width='1.5' stroke-linecap='round'%3E%3C/path%3E%3Cpath d='M7 3.33782C8.47087 2.48697 10.1786 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 10.1786 2.48697 8.47087 3.33782 7' stroke='%23FF3A2D' stroke-width='1.5' stroke-linecap='round'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}
.ways_grid .way.best {
  border: 2px solid #533A71;
}

.steps {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 1024px) {
  .steps {
    flex-wrap: wrap;
    gap: 2%;
    row-gap: 80px;
  }
}
.steps .step {
  width: 24%;
  display: inline-flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}
@media (max-width: 1024px) {
  .steps .step {
    width: 49%;
  }
}
@media (max-width: 640px) {
  .steps .step {
    width: 100%;
  }
}
.steps .step_image {
  text-align: center;
}
.steps .step_image img {
  max-width: 100px;
}
@media (max-width: 640px) {
  .steps .step_image img {
    max-width: 150px;
  }
}
.steps .step_title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
.steps .step_description {
  line-height: 26px;
  font-size: 14px;
  color: #2C3E50;
}
.steps .step_count {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  font-weight: bold;
  color: #2C3E50;
  width: 70px;
  height: 70px;
  display: flex;
}
.steps .step_count_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  opacity: 0.5;
}
.steps .step_count_bg svg {
  width: 100%;
}
.steps .step_count_num {
  position: relative;
  z-index: 11;
  font-size: 40px;
  margin: auto;
}

/* Сброс обёртки Preformatted, если внутри премиум CTA (шорткод в посте) */
pre.wp-block-preformatted:has(.premium_cta_block) {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  white-space: normal;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  border-radius: 0;
  color: inherit;
  overflow: visible;
}

.wp-block-preformatted .premium_cta_block {
  font-family: inherit;
  white-space: normal;
}

.premium_cta_block {
  margin: 40px 0;
  padding: 32px 36px;
  background: linear-gradient(135deg, rgba(255, 213, 79, 0.12) 0%, rgba(255, 179, 0, 0.08) 50%, rgba(255, 143, 0, 0.06) 100%);
  border: 1px solid rgba(255, 179, 0, 0.3);
  border-radius: 20px;
  text-align: center;
}
.premium_cta_block_inner {
  max-width: 560px;
  margin: 0 auto;
}
.premium_cta_block_badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: linear-gradient(135deg, #ffd54f 0%, #ffb300 100%);
  border-radius: 20px;
  margin-bottom: 16px;
}
.premium_cta_block_title {
  font-size: 24px;
  font-weight: 700;
  color: #26252E;
  margin: 0 0 12px;
  line-height: 1.3;
}
.premium_cta_block_desc {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0 0 24px;
}
.premium_cta_block_btn {
  display: inline-block;
  min-width: 200px;
}
.premium_cta_block--owned {
  background: rgba(76, 217, 100, 0.1);
  border-color: rgba(76, 217, 100, 0.35);
}
.premium_cta_block--owned .premium_cta_block_badge {
  background: linear-gradient(135deg, #4CD964 0%, #369A46 100%);
  color: #fff;
}
.premium_cta_block--owned .premium_cta_block_text {
  margin: 0;
  color: #555;
  font-size: 15px;
}
@media (max-width: 600px) {
  .premium_cta_block {
    padding: 24px 20px;
  }
  .premium_cta_block_title {
    font-size: 20px;
  }
  .premium_cta_block_desc {
    font-size: 14px;
  }
}

.plans_compare {
  margin: 40px 0;
}
.plans_compare .plans_compare_title {
  font-size: 26px;
  font-weight: 700;
  color: #26252E;
  margin: 0 0 24px;
  text-align: center;
}
.plans_compare .plans_compare_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .plans_compare .plans_compare_grid {
    grid-template-columns: 1fr;
  }
}
.plans_compare .plans_compare_col {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eee;
  background: #fff;
  box-shadow: 0 4px 20px rgba(18, 23, 38, 0.06);
}
.plans_compare .plans_compare_col--free .plans_compare_col_inner {
  padding: 28px 24px;
}
.plans_compare .plans_compare_col--premium {
  border-color: rgba(255, 179, 0, 0.35);
  background: linear-gradient(135deg, rgba(255, 213, 79, 0.06) 0%, rgba(255, 179, 0, 0.04) 100%);
  position: relative;
}
.plans_compare .plans_compare_col--premium .plans_compare_col_inner {
  padding: 28px 24px;
}
.plans_compare .plans_compare_col_inner {
  position: relative;
}
.plans_compare .plans_compare_badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: linear-gradient(135deg, #ffd54f 0%, #ffb300 100%);
  border-radius: 20px;
  padding: 5px 12px;
  margin-bottom: 12px;
}
.plans_compare .plans_compare_plan_name {
  font-size: 20px;
  font-weight: 700;
  color: #26252E;
  margin: 0 0 16px;
}
.plans_compare .plans_compare_list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.plans_compare .plans_compare_item {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: #444;
}
.plans_compare .plans_compare_item:last-child {
  margin-bottom: 0;
}
.plans_compare .plans_compare_item--yes::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background-color: rgba(76, 217, 100, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234CD964' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
}
.plans_compare .plans_compare_note {
  font-size: 13px;
  color: #888;
  margin-top: 8px;
}
.plans_compare .plans_compare_btn {
  display: inline-block;
  margin-top: 8px;
}
.plans_compare .plans_compare_owned {
  font-size: 14px;
  color: #369A46;
  font-weight: 500;
  margin-top: 8px;
}

.recommendBlock {
  padding: 40px;
  background: rgba(76, 217, 100, 0.2);
  display: flex;
  gap: 4%;
  margin: 40px 0;
}
@media (max-width: 520px) {
  .recommendBlock {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .recommendBlock {
    flex-wrap: wrap;
    row-gap: 40px;
  }
}
.recommendBlock .col {
  width: 48%;
}
@media (max-width: 767px) {
  .recommendBlock .col {
    width: 100%;
  }
}
.recommendBlock_title {
  font-weight: bold;
  font-size: 30px;
  color: #2C3E50;
  margin: 0 0 20px;
}
.recommendBlock_programTitle {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 20px;
}
.recommendBlock_programResults {
  margin: 0 0 40px;
}
.recommendBlock_programResults ul {
  list-style: none;
  padding: 0;
}
.recommendBlock_programResults li {
  background: url("data:image/svg+xml,%3Csvg fill='%234CD964' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='64px' height='64px' viewBox='0 0 45.701 45.7' xml:space='preserve' stroke='%234CD964'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cg%3E%3Cg%3E%3Cpath d='M20.687,38.332c-2.072,2.072-5.434,2.072-7.505,0L1.554,26.704c-2.072-2.071-2.072-5.433,0-7.504 c2.071-2.072,5.433-2.072,7.505,0l6.928,6.927c0.523,0.522,1.372,0.522,1.896,0L36.642,7.368c2.071-2.072,5.433-2.072,7.505,0 c0.995,0.995,1.554,2.345,1.554,3.752c0,1.407-0.559,2.757-1.554,3.752L20.687,38.332z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat 0 2px;
  background-size: 20px;
  padding: 0 0 0 35px;
}
.recommendBlock_btns {
  display: flex;
  gap: 20px;
}
@media (max-width: 520px) {
  .recommendBlock_btns {
    flex-wrap: wrap;
  }
  .recommendBlock_btns .daybooster_btn {
    max-width: 100%;
  }
}

.daybooster-alert {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  max-width: 420px;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), 0 2px 10px rgba(0, 0, 0, 0.08);
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
}
@media (max-width: 520px) {
  .daybooster-alert {
    left: 16px;
    right: 16px;
    bottom: 16px;
    min-width: auto;
    max-width: none;
  }
}
.daybooster-alert--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.daybooster-alert--success {
  background: linear-gradient(135deg, #4CD964 0%, #369A46 100%);
  border-left: 4px solid rgba(255, 255, 255, 0.5);
}
.daybooster-alert--error {
  background: linear-gradient(135deg, #FF3A2D 0%, #D83226 100%);
  border-left: 4px solid rgba(255, 255, 255, 0.4);
}
.daybooster-alert--info {
  background: linear-gradient(135deg, #8C53FF 0%, #6C40C4 100%);
  border-left: 4px solid rgba(255, 255, 255, 0.4);
}
.daybooster-alert__text {
  flex: 1;
}
.daybooster-alert__close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  color: inherit;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}
.daybooster-alert__close:hover {
  background: rgba(255, 255, 255, 0.4);
}

.daybooster-confirm {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.daybooster-confirm--visible {
  opacity: 1;
  pointer-events: auto;
}
.daybooster-confirm__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.45);
  cursor: pointer;
}
.daybooster-confirm__panel {
  position: relative;
  z-index: 1;
  max-width: 420px;
  width: 100%;
  padding: 24px 22px 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18), 0 4px 16px rgba(0, 0, 0, 0.08);
}
.daybooster-confirm__message {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.45;
  color: #222;
}
.daybooster-confirm__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 10px;
}
.daybooster-confirm__actions .daybooster_btn {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 14px;
  font-size: 11px;
  line-height: 1.25;
}
.daybooster-confirm__btn-cancel {
  background: #ece9f2;
  color: #3a3545;
  border-bottom: 4px solid #cfc8db;
}
.daybooster-confirm__btn-cancel:hover {
  background: #e2dde9;
  color: #2a2535;
}
.daybooster-confirm__btn-cancel:focus {
  background: #d8d2e2;
  color: #2a2535;
}
.daybooster-confirm__btn-ok {
  background: #8c53ff;
  color: #fff;
  border-bottom: 4px solid #6c40c4;
}
.daybooster-confirm__btn-ok:hover {
  background: #7746d8;
}
.daybooster-confirm__btn-ok:focus {
  background: #6c40c4;
}

.daybooster-program-complete {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.daybooster-program-complete--visible {
  opacity: 1;
  pointer-events: auto;
}
.daybooster-program-complete__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.5);
  cursor: pointer;
}
.daybooster-program-complete__panel {
  position: relative;
  z-index: 1;
  max-width: 440px;
  width: 100%;
  padding: 28px 24px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, #faf8ff 0%, #fff 42%);
  box-shadow: 0 24px 64px rgba(140, 83, 255, 0.22), 0 8px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(140, 83, 255, 0.2);
  text-align: center;
}
.daybooster-program-complete__icon {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 8px;
}
.daybooster-program-complete__title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  color: #2d1f4a;
  background: linear-gradient(120deg, #8c53ff 0%, #5b8cff 55%, #00c9a7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.daybooster-program-complete__intro {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.45;
  color: #444;
}
.daybooster-program-complete__list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  text-align: left;
}
.daybooster-program-complete__item {
  margin: 0;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(140, 83, 255, 0.06);
  border: 1px solid rgba(140, 83, 255, 0.12);
}
.daybooster-program-complete__item + .daybooster-program-complete__item {
  margin-top: 8px;
}
.daybooster-program-complete__link {
  font-size: 15px;
  font-weight: 700;
  color: #533A71;
  text-decoration: none;
}
.daybooster-program-complete__link:hover {
  text-decoration: underline;
}
.daybooster-program-complete__name {
  font-size: 15px;
  font-weight: 700;
  color: #2d1f4a;
}
.daybooster-program-complete__actions {
  display: flex;
  justify-content: center;
}
.daybooster-program-complete__btn-ok {
  min-width: 160px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, #8c53ff 0%, #6c40c4 100%);
  color: #fff;
  border: none;
  border-bottom: 4px solid #4f2d9a;
  border-radius: 999px;
  cursor: pointer;
}
.daybooster-program-complete__btn-ok:hover {
  filter: brightness(1.05);
}
.daybooster-program-complete__btn-ok:focus {
  outline: 2px solid rgba(140, 83, 255, 0.5);
  outline-offset: 2px;
}

#calendar_today.calendar--day-saved .calendar-done-checkbox {
  cursor: not-allowed;
  opacity: 0.75;
}

html.theme-dark .daybooster-confirm__panel {
  background: #1e1e24;
  color: #eee;
}
html.theme-dark .daybooster-confirm__message {
  color: #eee;
}
html.theme-dark .daybooster-confirm__btn-cancel {
  background: rgba(255, 255, 255, 0.08);
  color: #e8e6ff;
  border-bottom-color: rgba(255, 255, 255, 0.18);
}
html.theme-dark .daybooster-confirm__btn-cancel:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
html.theme-dark .daybooster-confirm__btn-cancel:focus {
  background: rgba(255, 255, 255, 0.12);
}
html.theme-dark .daybooster-confirm__btn-ok {
  background: #8c53ff;
  border-bottom-color: #a78bfa;
}
html.theme-dark .daybooster-confirm__btn-ok:hover {
  background: #7746d8;
}
html.theme-dark .daybooster-confirm__btn-ok:focus {
  background: #6c40c4;
}
html.theme-dark .daybooster-program-complete__panel {
  background: linear-gradient(180deg, #252530 0%, #1e1e24 45%);
  border-color: rgba(167, 139, 250, 0.25);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), 0 8px 24px rgba(140, 83, 255, 0.15);
}
html.theme-dark .daybooster-program-complete__title {
  background: linear-gradient(120deg, #c4b5fd 0%, #93c5fd 50%, #5eead4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
html.theme-dark .daybooster-program-complete__intro {
  color: #c8c6d4;
}
html.theme-dark .daybooster-program-complete__item {
  background: rgba(140, 83, 255, 0.12);
  border-color: rgba(167, 139, 250, 0.2);
}
html.theme-dark .daybooster-program-complete__link {
  color: rgb(127.7859649123, 91.6456140351, 171.1543859649);
}
html.theme-dark .daybooster-program-complete__name {
  color: #eee;
}
html.theme-dark .daybooster-program-complete__btn-ok {
  background: linear-gradient(135deg, #8c53ff 0%, #6c40c4 100%);
  border-bottom-color: #a78bfa;
}
html.theme-dark .daybooster-program-complete__btn-ok:hover {
  filter: brightness(1.08);
}

.edit-post-visual-editor .editor-block-list__block .wc-block-grid__product-title, .editor-styles-wrapper .wc-block-grid__product-title, .wc-block-grid__product-title {
  color: #111;
}

/* Ночной режим */
html.theme-dark body.single-product div.product .summary {
  background: transparent;
}
html.theme-dark .thankyou_page .thankyou_feature_item::before {
  color: rgb(133.0350877193, 98.3859649123, 174.6140350877);
}
html.theme-dark .thankyou_page .thankyou_order_ref {
  color: rgb(138.2842105263, 105.1263157895, 178.0736842105);
}
html.theme-dark .thankyou_page .thankyou_link--secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
  color: #e8e6ff;
}
html.theme-dark .thankyou_page .thankyou_link--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
html.theme-dark .thankyou_page .thankyou_link--secondary:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}
html.theme-dark .thankyou_page .thankyou_link--primary:hover {
  color: #fff;
}
html.theme-dark .db-corporate-page::before {
  opacity: 0.55;
}
html.theme-dark .db-corporate-hero-shell {
  background: linear-gradient(180deg, rgba(83, 58, 113, 0.12) 0%, transparent 100%);
}
html.theme-dark .db-corporate-hero-panel {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(30, 31, 42, 0.95) 0%, rgba(22, 23, 32, 0.98) 100%);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}
html.theme-dark .db-corporate-hero__title {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #f0efff;
}
html.theme-dark .db-corporate-hero__lead {
  color: rgba(226, 226, 234, 0.88);
}
html.theme-dark .db-corporate-eyebrow {
  color: rgb(138.2842105263, 105.1263157895, 178.0736842105);
}
html.theme-dark .db-corporate-btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
  color: #e8e6ff;
}
html.theme-dark .db-corporate-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
html.theme-dark .db-corporate-btn--ghost {
  color: rgb(138.2842105263, 105.1263157895, 178.0736842105);
}
html.theme-dark .db-corporate-btn--ghost:hover {
  color: #fff;
}
html.theme-dark .db-corporate-section__title {
  color: #e8e8f0;
}
html.theme-dark .db-corporate-section__title::after {
  background: linear-gradient(90deg, rgb(112.7052631579, 78.7578947368, 153.4421052632), rgb(129.7228426396, 157.4741116751, 224.0771573604));
}
html.theme-dark .db-corporate-panel {
  border-color: rgba(255, 255, 255, 0.1);
  background: radial-gradient(120% 80% at 0% 0%, rgba(83, 58, 113, 0.15) 0%, transparent 55%), linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: none;
}
html.theme-dark .db-corporate-card {
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
}
html.theme-dark .db-corporate-card:hover {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}
html.theme-dark .db-corporate-card--tint-0,
html.theme-dark .db-corporate-card--tint-1,
html.theme-dark .db-corporate-card--tint-2,
html.theme-dark .db-corporate-card--tint-3,
html.theme-dark .db-corporate-card--tint-4,
html.theme-dark .db-corporate-card--tint-5 {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-color: rgba(255, 255, 255, 0.12);
}
html.theme-dark .db-corporate-steps::before {
  background: linear-gradient(180deg, rgba(83, 58, 113, 0.45) 0%, rgba(97, 132, 216, 0.25) 100%);
}
html.theme-dark .db-corporate-steps__num {
  background: linear-gradient(145deg, rgb(97.8526315789, 68.3789473684, 133.2210526316) 0%, rgb(117.6561403509, 82.2175438596, 160.1824561404) 100%);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
html.theme-dark .db-corporate-checklist li {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
html.theme-dark .db-corporate-checklist li::before {
  color: rgb(133.0350877193, 98.3859649123, 174.6140350877);
}
html.theme-dark .db-corporate-faq__item {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}
html.theme-dark .db-corporate-faq dt {
  color: #ececf4;
}
html.theme-dark .db-corporate-cta-final__inner {
  background: radial-gradient(100% 80% at 10% 0%, rgba(83, 58, 113, 0.25) 0%, transparent 55%), linear-gradient(135deg, rgba(83, 58, 113, 0.22) 0%, rgba(97, 132, 216, 0.15) 100%);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
html.theme-dark .db-front-corporate__inner {
  border-color: rgba(255, 255, 255, 0.12);
  background: radial-gradient(90% 70% at 0% 0%, rgba(83, 58, 113, 0.2) 0%, transparent 55%), linear-gradient(155deg, #1e1f2a 0%, #252636 45%, #1a1b23 100%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
html.theme-dark .db-front-corporate__eyebrow {
  color: rgb(138.2842105263, 105.1263157895, 178.0736842105);
}
html.theme-dark .db-front-corporate__title {
  color: #ececf4;
}
html.theme-dark .db-front-corporate__lead {
  opacity: 0.88;
}
html.theme-dark .db-front-corporate__badge {
  background: linear-gradient(145deg, rgba(40, 41, 54, 0.95) 0%, rgba(28, 29, 38, 0.98) 100%);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
html.theme-dark .db-front-corporate__badge-hint {
  color: rgba(226, 226, 234, 0.75);
}
html.theme-dark .db-front-trainers__inner {
  border-color: rgba(80, 197, 183, 0.28);
  background: radial-gradient(90% 70% at 100% 0%, rgba(80, 197, 183, 0.18) 0%, transparent 55%), linear-gradient(155deg, #1a2422 0%, #1e2528 45%, #1a1b23 100%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
html.theme-dark .db-front-trainers__eyebrow {
  color: rgb(110.643776824, 207.156223176, 195.6077253219);
}
html.theme-dark .db-front-trainers__title {
  color: #ececf4;
}
html.theme-dark .db-front-trainers__lead {
  opacity: 0.88;
}
html.theme-dark .db-front-trainers__badge {
  background: linear-gradient(145deg, rgba(30, 40, 38, 0.95) 0%, rgba(22, 28, 30, 0.98) 100%);
  border-color: rgba(80, 197, 183, 0.25);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
html.theme-dark .db-front-trainers__badge-hint {
  color: rgba(226, 234, 232, 0.75);
}
html.theme-dark .dark-mode-toggle .dark-mode-toggle__icon--moon {
  display: none !important;
}
html.theme-dark .dark-mode-toggle .dark-mode-toggle__icon--sun {
  display: inline-flex !important;
}
html.theme-dark body {
  background: #1a1b23;
  color: #e2e2ea;
}
html.theme-dark .parallax {
  opacity: 0.08;
}
html.theme-dark body > header {
  background: #12131a;
}
html.theme-dark .header_meta_block {
  background: #25262e;
  border-color: #3a3b45;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}
html.theme-dark .header_meta_block .header_name--dropdown {
  color: #e2e2ea;
  border-bottom-color: #33343e;
}
html.theme-dark .header_meta_block:before {
  background: #25262e;
  border-top-color: #3a3b45;
  border-left-color: #3a3b45;
}
html.theme-dark .header_meta_block ul li {
  border-bottom-color: #33343e;
}
html.theme-dark .header_meta_block ul li a {
  color: #e2e2ea;
}
html.theme-dark .header_meta_block ul li a:hover {
  background: #31323d;
  color: #c9adff;
}
html.theme-dark .header_menu_mobile .header_user {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.08);
}
html.theme-dark .header_menu_mobile .header_user .header_meta {
  border-top-color: rgba(255, 255, 255, 0.1);
}
html.theme-dark .header_menu_mobile .header_user .header_meta a {
  color: #e2e2ea;
}
html.theme-dark footer {
  background: #12131a;
}
html.theme-dark footer .footer_feedback_strip {
  background: linear-gradient(145deg, rgba(158, 82, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 42%, rgba(18, 19, 26, 0.5) 100%);
  border-color: rgba(158, 82, 255, 0.22);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
html.theme-dark .front_page .title,
html.theme-dark .cabinet_page_title,
html.theme-dark h1, html.theme-dark h2, html.theme-dark h3, html.theme-dark h4 {
  color: #e8e8f0;
}
html.theme-dark .front_page .title:before {
  background: #533A71;
}
html.theme-dark .hero .description,
html.theme-dark .hero h1 {
  color: #d0d0dc;
}
html.theme-dark .hero .hero__result {
  color: #c8c8d4;
}
html.theme-dark .hero .hero__sub {
  color: #a0a0b0;
}
html.theme-dark .front_capability_no_schedule {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
html.theme-dark .front_capability_no_schedule_title {
  color: #a0a0b0;
}
html.theme-dark .front_capability_no_schedule_item {
  background: rgba(140, 83, 255, 0.1);
  border-color: rgba(140, 83, 255, 0.22);
}
html.theme-dark .front_capability_no_schedule_name {
  color: #e8e8f0;
}
html.theme-dark .front_capability_no_schedule_days {
  color: #c9adff;
}
html.theme-dark .hero .hero_search,
html.theme-dark .hero #search_capability.hero_search {
  background: linear-gradient(145deg, rgba(37, 38, 46, 0.92) 0%, rgba(30, 31, 38, 0.96) 100%);
  border-color: rgba(158, 82, 255, 0.35);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}
html.theme-dark .hero .hero_search:focus-within,
html.theme-dark .hero #search_capability.hero_search:focus-within {
  border-color: rgba(184, 160, 255, 0.55);
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.45), 0 0 0 3px rgba(140, 83, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
html.theme-dark .hero .hero_search__icon {
  opacity: 0.65;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9adff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") center/contain no-repeat;
}
html.theme-dark .hero .hero_search__input {
  color: #e8e8f0;
}
html.theme-dark .hero .hero_search__input::placeholder {
  color: #8888a0;
}
html.theme-dark .hero .hero_search__clear {
  color: #d4c4ff;
  background: rgba(140, 83, 255, 0.18);
  border-color: rgba(184, 160, 255, 0.35);
}
html.theme-dark .hero .hero_search__clear:hover {
  background: rgba(140, 83, 255, 0.28);
  border-color: rgba(212, 196, 255, 0.5);
  color: #f0e8ff;
}
html.theme-dark .db-trust-strip__item--ru {
  border-color: rgba(96, 165, 250, 0.35);
  background: radial-gradient(100% 80% at 20% 0%, rgba(37, 99, 235, 0.22) 0%, transparent 55%), radial-gradient(90% 70% at 100% 100%, rgba(239, 68, 68, 0.12) 0%, transparent 50%), linear-gradient(165deg, #1e293b 0%, #1a2332 50%, #25262e 100%);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}
html.theme-dark .db-trust-strip__item--ru:hover {
  border-color: rgba(147, 197, 253, 0.5);
  box-shadow: 0 16px 44px rgba(37, 99, 235, 0.2), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}
html.theme-dark .db-trust-strip__item--digital {
  border-color: rgba(34, 211, 238, 0.3);
  background: radial-gradient(100% 90% at 15% 15%, rgba(34, 211, 238, 0.15) 0%, transparent 50%), radial-gradient(90% 80% at 90% 85%, rgba(167, 139, 250, 0.18) 0%, transparent 50%), linear-gradient(155deg, #1f1b2e 0%, #252032 45%, #25262e 100%);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}
html.theme-dark .db-trust-strip__item--digital:hover {
  border-color: rgba(167, 139, 250, 0.45);
  box-shadow: 0 16px 44px rgba(139, 92, 246, 0.22), 0 0 0 1px rgba(34, 211, 238, 0.08), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}
html.theme-dark .db-trust-strip__item--users {
  border-color: rgba(251, 191, 36, 0.35);
  background: radial-gradient(100% 80% at 50% -5%, rgba(251, 191, 36, 0.2) 0%, transparent 45%), linear-gradient(170deg, #2d2618 0%, #252319 40%, #25262e 100%);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}
html.theme-dark .db-trust-strip__item--users:hover {
  border-color: rgba(252, 211, 77, 0.45);
  box-shadow: 0 16px 44px rgba(245, 158, 11, 0.15), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}
html.theme-dark .db-trust-strip__item--social {
  border-color: rgba(52, 211, 153, 0.32);
  background: radial-gradient(100% 90% at 0% 100%, rgba(16, 185, 129, 0.18) 0%, transparent 52%), radial-gradient(90% 70% at 100% 0%, rgba(244, 114, 182, 0.1) 0%, transparent 48%), linear-gradient(160deg, #142c24 0%, #1a2e28 42%, #25262e 100%);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}
html.theme-dark .db-trust-strip__item--social:hover {
  border-color: rgba(110, 231, 183, 0.45);
  box-shadow: 0 16px 44px rgba(16, 185, 129, 0.18), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}
html.theme-dark .db-trust-strip__icon--ru {
  background: linear-gradient(145deg, #1e3a5f 0%, #2563eb 50%, #3b82f6 100%);
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}
html.theme-dark .db-trust-strip__icon--digital {
  background: linear-gradient(145deg, #312e81 0%, #5b21b6 40%, #0891b2 100%);
  box-shadow: 0 6px 28px rgba(139, 92, 246, 0.4), 0 0 24px rgba(34, 211, 238, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}
html.theme-dark .db-trust-strip__icon--users {
  background: linear-gradient(145deg, #92400e 0%, #d97706 45%, #fbbf24 100%);
  box-shadow: 0 6px 28px rgba(217, 119, 6, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}
html.theme-dark .db-trust-strip__icon--social {
  background: linear-gradient(145deg, #065f46 0%, #059669 45%, #34d399 100%);
  box-shadow: 0 6px 28px rgba(5, 150, 105, 0.4), 0 0 20px rgba(244, 114, 182, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}
html.theme-dark .db-trust-strip__svg {
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.35));
}
html.theme-dark .db-trust-strip__item--ru .db-trust-strip__title,
html.theme-dark .db-trust-strip__item--digital .db-trust-strip__title,
html.theme-dark .db-trust-strip__item--users .db-trust-strip__title,
html.theme-dark .db-trust-strip__item--social .db-trust-strip__title {
  color: #e8e8f0;
}
html.theme-dark .db-trust-strip__hint {
  color: #a0a0b0;
}
html.theme-dark .db-about-teaser__card {
  border-color: rgba(184, 160, 255, 0.28);
  background: radial-gradient(420px 160px at 8% 30%, rgba(140, 83, 255, 0.2) 0%, transparent 55%), radial-gradient(360px 140px at 92% 70%, rgba(76, 217, 100, 0.1) 0%, transparent 50%), linear-gradient(152deg, #1e1f28 0%, #25262e 100%);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}
html.theme-dark .db-about-teaser__eyebrow {
  background: rgba(140, 83, 255, 0.22);
  color: #e0d4ff;
  border: 1px solid rgba(184, 160, 255, 0.28);
}
html.theme-dark .db-about-teaser__title {
  color: #f0eef9;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}
html.theme-dark .db-about-teaser__name {
  color: #d4c4ff;
}
html.theme-dark .db-about-teaser__lead {
  color: #b8b8c8;
}
html.theme-dark .db-about-teaser__item {
  color: #d0d0dc;
}
html.theme-dark .db-about-teaser__item::before {
  box-shadow: 0 0 0 2px rgba(140, 83, 255, 0.28);
}
@media (max-width: 767px) {
  html.theme-dark .db-about-teaser__highlights {
    border-top-color: rgba(184, 160, 255, 0.22);
  }
}
html.theme-dark .db-about-teaser__stats-link-wrap {
  border-top-color: rgba(184, 160, 255, 0.22);
}
html.theme-dark .db-about-teaser__stats-link {
  color: #d4c4ff;
}
html.theme-dark .db-about-teaser__stats-link:hover {
  color: #fff;
}
html.theme-dark .db-about-teaser__stats-link:focus-visible {
  outline-color: rgba(196, 166, 255, 0.55);
}
html.theme-dark .courses__stats-teaser {
  color: #b8b8c8;
}
html.theme-dark .courses__stats-teaser a {
  color: #c9adff;
}
html.theme-dark .courses__stats-teaser a:hover {
  color: #ede6ff;
}
html.theme-dark .front_page .what .what__stats-teaser {
  color: #b8b8c8;
}
html.theme-dark .front_page .what .what__stats-teaser a {
  color: #c9adff;
}
html.theme-dark .front_page .what .what__stats-teaser a:hover {
  color: #ede6ff;
}
html.theme-dark {
  /* Блоки отзывов на главной (программы + короткие): панель и карточки в тёмной теме */
}
html.theme-dark .db-prog-reviews-section.front_padding,
html.theme-dark .reviews.front_padding {
  background: radial-gradient(ellipse 85% 55% at 50% 0%, rgba(140, 83, 255, 0.14) 0%, transparent 52%), radial-gradient(ellipse 70% 45% at 100% 100%, rgba(76, 217, 100, 0.08) 0%, transparent 45%), linear-gradient(180deg, rgba(30, 31, 40, 0.75) 0%, rgba(22, 23, 30, 0.35) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
html.theme-dark .db-prog-reviews__eyebrow {
  background: linear-gradient(135deg, rgba(140, 83, 255, 0.28) 0%, rgba(76, 217, 100, 0.12) 100%);
  color: #e8d9ff;
  border: 1px solid rgba(184, 160, 255, 0.28);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
html.theme-dark .db-prog-reviews__title {
  color: #f0eef9;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}
html.theme-dark .db-prog-reviews__subtitle {
  color: #b8b8c8;
}
html.theme-dark .db-prog-reviews__slider-wrap {
  border-radius: 18px;
  padding: 4px 0 2px;
}
html.theme-dark .db-prog-reviews__btn {
  background: linear-gradient(165deg, #32333f 0%, #25262e 100%);
  border-color: rgba(184, 160, 255, 0.35);
  color: #e8d9ff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
html.theme-dark .db-prog-reviews__btn:hover:not(:disabled) {
  background: rgba(140, 83, 255, 0.22);
  border-color: rgba(212, 196, 255, 0.45);
  color: #fff;
}
html.theme-dark .db-prog-reviews__btn:disabled {
  opacity: 0.28;
  border-color: #3a3b45;
}
html.theme-dark .db-prog-reviews__viewport {
  scrollbar-color: rgba(140, 83, 255, 0.45) rgba(0, 0, 0, 0.25);
}
html.theme-dark .db-prog-reviews__viewport::-webkit-scrollbar {
  height: 8px;
}
html.theme-dark .db-prog-reviews__viewport::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.22);
  border-radius: 4px;
}
html.theme-dark .db-prog-reviews__viewport::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(140, 83, 255, 0.55) 0%, rgba(76, 217, 100, 0.35) 100%);
  border-radius: 4px;
  border: 2px solid rgba(22, 23, 30, 0.9);
}
html.theme-dark .db-prog-review-card {
  background: linear-gradient(165deg, #2f303a 0%, #25262e 55%, #22232b 100%);
  border: 1px solid rgba(184, 160, 255, 0.18);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 0, 0, 0.25) inset, inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
html.theme-dark .db-prog-review-card::before {
  background: linear-gradient(135deg, rgba(140, 83, 255, 0.22) 0%, rgba(76, 217, 100, 0.14) 100%);
  opacity: 0;
}
html.theme-dark .db-prog-review-card:hover {
  border-color: rgba(184, 160, 255, 0.32);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(140, 83, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
html.theme-dark .db-prog-review-card:hover::before {
  opacity: 1;
}
html.theme-dark .db-prog-review-card__avatar {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
html.theme-dark .db-prog-review-card__name {
  color: #f0eef9;
}
html.theme-dark .db-prog-review-card__status {
  color: #a8a8b8;
}
html.theme-dark .db-prog-review-card__program {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
html.theme-dark .db-prog-review-card__program-label {
  color: #8c8c9e;
}
html.theme-dark .db-prog-review-card__program-link {
  color: #d4c4ff;
}
html.theme-dark .db-prog-review-card__program-link:hover {
  color: #f5f0ff;
}
html.theme-dark .db-prog-review-card__results-title {
  color: #a8f5c0;
}
html.theme-dark .db-prog-review-card__results-text {
  color: #d0d0dc;
}
html.theme-dark .db-prog-review-card__stars {
  color: #c9b3ff;
  filter: drop-shadow(0 0 6px rgba(140, 83, 255, 0.25));
}
html.theme-dark .db-prog-review-card__quote {
  color: #e2e2ea;
}
html.theme-dark .db-prog-review-card__suggestion {
  border-color: rgba(184, 160, 255, 0.38);
  background: linear-gradient(135deg, rgba(140, 83, 255, 0.16) 0%, rgba(76, 217, 100, 0.1) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
html.theme-dark .db-prog-review-card__suggestion-label {
  color: #e0d4ff;
}
html.theme-dark .db-prog-review-card__suggestion-text {
  color: #c8c8d4;
}
html.theme-dark .db-reviews__eyebrow {
  background: linear-gradient(135deg, rgba(76, 217, 100, 0.22) 0%, rgba(54, 154, 70, 0.14) 100%);
  color: #c8fad6;
  border: 1px solid rgba(110, 231, 183, 0.28);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
html.theme-dark .db-reviews__title {
  color: #f0eef9;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}
html.theme-dark .db-reviews__subtitle {
  color: #b8b8c8;
}
html.theme-dark .db-reviews__track {
  gap: 16px;
}
html.theme-dark .db-reviews__slider-wrap {
  border-radius: 18px;
  padding: 4px 0 2px;
}
html.theme-dark .db-reviews__btn {
  background: linear-gradient(165deg, #32333f 0%, #25262e 100%);
  border-color: rgba(110, 231, 183, 0.35);
  color: #c8fad6;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
html.theme-dark .db-reviews__btn:hover:not(:disabled) {
  background: rgba(76, 217, 100, 0.18);
  border-color: rgba(110, 231, 183, 0.5);
  color: #fff;
}
html.theme-dark .db-reviews__btn:disabled {
  opacity: 0.28;
  border-color: #3a3b45;
}
@media (max-width: 900px) {
  html.theme-dark .db-reviews__viewport {
    scrollbar-color: rgba(76, 217, 100, 0.4) rgba(0, 0, 0, 0.25);
  }
  html.theme-dark .db-reviews__viewport::-webkit-scrollbar {
    height: 8px;
  }
  html.theme-dark .db-reviews__viewport::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.22);
    border-radius: 4px;
  }
  html.theme-dark .db-reviews__viewport::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, rgba(76, 217, 100, 0.45) 0%, rgba(54, 154, 70, 0.35) 100%);
    border-radius: 4px;
    border: 2px solid rgba(22, 23, 30, 0.9);
  }
}
html.theme-dark .db-review-card {
  background: linear-gradient(165deg, #2f303a 0%, #25262e 55%, #22232b 100%);
  border: 1px solid rgba(110, 231, 183, 0.14);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 0, 0, 0.25) inset, inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
html.theme-dark .db-review-card::before {
  background: linear-gradient(135deg, rgba(76, 217, 100, 0.2) 0%, rgba(140, 83, 255, 0.16) 100%);
  opacity: 0;
}
html.theme-dark .db-review-card:hover {
  border-color: rgba(110, 231, 183, 0.32);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(76, 217, 100, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
html.theme-dark .db-review-card:hover::before {
  opacity: 1;
}
html.theme-dark .db-review-card__avatar {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
html.theme-dark .db-review-card__name {
  color: #f0eef9;
}
html.theme-dark .db-review-card__meta {
  color: #a8a8b8;
}
html.theme-dark .db-review-card__stars {
  color: #c9b3ff;
  filter: drop-shadow(0 0 6px rgba(140, 83, 255, 0.25));
}
html.theme-dark .db-review-card__quote {
  color: #e2e2ea;
}
html.theme-dark .courses .wrapper,
html.theme-dark .what .wrapper,
html.theme-dark .ways .wrapper,
html.theme-dark .how .wrapper,
html.theme-dark .recommend .wrapper,
html.theme-dark .front_blog .wrapper,
html.theme-dark .faq .wrapper,
html.theme-dark .db-pwa-section .wrapper,
html.theme-dark .db-trust-strip .wrapper,
html.theme-dark .db-about-teaser .wrapper {
  color: #e2e2ea;
}
html.theme-dark .daybooster-pwa-install__card {
  background: radial-gradient(520px 200px at 12% 20%, rgba(158, 82, 255, 0.2) 0%, transparent 55%), radial-gradient(400px 180px at 88% 80%, rgba(76, 217, 100, 0.1) 0%, transparent 50%), linear-gradient(145deg, #1e1f28 0%, #25262e 100%);
  border-color: rgba(158, 82, 255, 0.28);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}
html.theme-dark .daybooster-pwa-install__title {
  color: #e8e8f0;
}
html.theme-dark .daybooster-pwa-install__subtitle {
  color: #a0a0b0;
}
html.theme-dark .daybooster-pwa-install__icon {
  color: #c9adff;
}
html.theme-dark .daybooster-pwa-install__hint {
  color: #b0b0c0;
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(158, 82, 255, 0.22);
}
html.theme-dark .daybooster-pwa-install__done {
  color: #b8f0c8;
  background: rgba(76, 217, 100, 0.12);
  border-color: rgba(76, 217, 100, 0.28);
}
html.theme-dark .db-author-programs__intro {
  color: #b7b7c5;
}
html.theme-dark .db-shop-hero {
  border-bottom-color: #3a3b45;
}
html.theme-dark .db-shop-hero__title {
  color: #e8e8f0;
}
html.theme-dark .db-shop-hero__lead {
  color: #a0a0b0;
}
html.theme-dark .db-premium-pricing__title {
  color: #e8e8f0;
}
html.theme-dark .db-premium-pricing__intro {
  color: #a0a0b0;
}
html.theme-dark .db-premium-pricing__card {
  background: #25262e;
  border-color: #3a3b45;
}
html.theme-dark .db-premium-pricing__card--featured {
  border-color: rgba(158, 82, 255, 0.5);
  background: linear-gradient(180deg, rgba(158, 82, 255, 0.14) 0%, #25262e 50%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
html.theme-dark .db-premium-pricing__duration {
  color: #e8e8f0;
}
html.theme-dark .db-premium-pricing__badge {
  background: linear-gradient(135deg, rgba(158, 82, 255, 0.28) 0%, rgba(158, 82, 255, 0.1) 100%);
  color: #d4c4ff;
}
html.theme-dark .db-premium-pricing__price {
  color: #e8e8f0;
}
html.theme-dark .db-premium-pricing__per {
  color: #a0a0b0;
}
html.theme-dark .db-premium-pricing__missing {
  color: #a0a0b0;
}
html.theme-dark .db-premium-pricing--front {
  border-bottom-color: #3a3b45;
}
html.theme-dark .db-access-explainer__lead {
  color: #a0a0b0;
}
html.theme-dark .db-access-explainer__col {
  background: #25262e;
  border-color: #3a3b45;
}
html.theme-dark .db-access-explainer__col--premium {
  border-color: rgba(158, 82, 255, 0.45);
  background: linear-gradient(180deg, rgba(158, 82, 255, 0.12) 0%, #25262e 55%);
}
html.theme-dark .db-access-explainer__col_title {
  color: #e8e8f0;
}
html.theme-dark .db-access-explainer__col_intro {
  color: #a0a0b0;
}
html.theme-dark .db-access-explainer__list {
  color: #c8c8d4;
}
html.theme-dark .db-access-explainer__footnote {
  color: #a0a0b0;
}
html.theme-dark .db-shop-usps__item {
  background: #25262e;
  border-color: #3a3b45;
}
html.theme-dark .db-shop-usps__name {
  color: #e8e8f0;
}
html.theme-dark .db-shop-usps__desc {
  color: #a0a0b0;
}
html.theme-dark .db-shop-trust__list {
  background: linear-gradient(135deg, rgba(158, 82, 255, 0.12) 0%, rgba(158, 82, 255, 0.04) 100%);
  border-color: rgba(158, 82, 255, 0.35);
}
html.theme-dark .db-shop-trust__item {
  color: #c8c8d4;
}
html.theme-dark .db-feedback-modal__dialog {
  background: #25262e;
  border: 1px solid #3a3b45;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
html.theme-dark .db-feedback-modal__head {
  border-bottom-color: #3a3b45;
}
html.theme-dark .db-feedback-modal__title {
  color: #e8e8f0;
}
html.theme-dark .db-feedback-modal__close {
  background: #3a3b45;
  color: #e2e2ea;
}
html.theme-dark .db-feedback-modal__close:hover {
  background: #454650;
}
html.theme-dark .db-feedback-modal__notice {
  color: #a0a0b0;
}
html.theme-dark .db-feedback-modal .wpcf7-form label {
  color: #c8c8d4;
}
html.theme-dark .db-feedback-modal .wpcf7-form input.wpcf7-form-control:not(.wpcf7-submit),
html.theme-dark .db-feedback-modal .wpcf7-form textarea.wpcf7-form-control,
html.theme-dark .db-feedback-modal .wpcf7-form input[type=text],
html.theme-dark .db-feedback-modal .wpcf7-form input[type=email],
html.theme-dark .db-feedback-modal .wpcf7-form input[type=url],
html.theme-dark .db-feedback-modal .wpcf7-form input[type=tel],
html.theme-dark .db-feedback-modal .wpcf7-form input[type=number],
html.theme-dark .db-feedback-modal .wpcf7-form textarea {
  background-color: #1e1f26;
  border-color: #3a3b45;
  color: #e2e2ea;
}
html.theme-dark .db-feedback-modal .wpcf7-form select.wpcf7-form-control,
html.theme-dark .db-feedback-modal .wpcf7-form select {
  background-color: #1e1f26;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath stroke='%23a0a0b0' stroke-linecap='round' stroke-width='2' d='m1 1 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  border-color: #3a3b45;
  color: #e2e2ea;
}
html.theme-dark .db-feedback-modal .wpcf7-form .wpcf7-response-output {
  border-color: #3a3b45;
  background: rgba(30, 31, 38, 0.6);
  color: #c8c8d4;
}
html.theme-dark .db-feedback-modal .wpcf7-form .wpcf7-response-output.wpcf7-validation-errors {
  border-color: rgba(230, 120, 120, 0.45);
  background: rgba(80, 30, 30, 0.35);
  color: #ffb4b4;
}
html.theme-dark .db-feedback-modal .wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  border-color: rgba(120, 200, 150, 0.45);
  background: rgba(30, 60, 40, 0.35);
  color: #9dffb0;
}
html.theme-dark .db-feedback-toast__panel {
  background: linear-gradient(145deg, #2a2b35 0%, #25262e 100%);
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(76, 217, 100, 0.35), 0 0 40px rgba(76, 217, 100, 0.1);
}
html.theme-dark .db-feedback-toast__title {
  color: #e8e8f0;
}
html.theme-dark .db-feedback-toast__msg {
  color: #a0a0b0;
}
html.theme-dark .db-feedback-toast__close {
  color: #a0a0b0;
}
html.theme-dark .db-feedback-toast__close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #e2e2ea;
}
html.theme-dark .ways_grid .way {
  background: #25262e;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
html.theme-dark .ways_grid .way.best {
  border-color: rgba(140, 83, 255, 0.5);
}
html.theme-dark .capability_cards_grid .capability_card {
  background: #25262e;
  border-color: #3a3b45;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
html.theme-dark .capability_cards_grid .capability_card:hover {
  border-color: rgba(140, 83, 255, 0.4);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}
html.theme-dark .capability_cards_grid .capability_card .capability_card_info,
html.theme-dark .capability_cards_grid .capability_card .capability_card_title {
  color: #e2e2ea;
}
html.theme-dark .capability_cards_grid .capability_card .capability_card_image .author_program_badge {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}
html.theme-dark .capability_cards_grid .capability_card .access_badge {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.12);
}
html.theme-dark .capability_cards_grid .capability_card .access_badge.free {
  background: linear-gradient(135deg, #4ddfad 0%, #26b88a 50%, #1a9b75 100%);
  color: #f4fffb;
  border-color: rgba(180, 255, 230, 0.22);
}
html.theme-dark .capability_cards_grid .capability_card .access_badge.premium {
  background: linear-gradient(135deg, #ffe566 0%, #ffb300 42%, #d99600 100%);
  color: #2a1f00;
  border-color: rgba(255, 230, 160, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 200, 80, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
html.theme-dark .capability_cards_grid .capability_card.premium {
  border: 2px solid transparent;
  background: linear-gradient(172deg, #2e2c38 0%, #25262e 45%, #2a2540 100%) padding-box, linear-gradient(135deg, rgba(230, 195, 90, 0.75) 0%, rgba(140, 83, 255, 0.55) 35%, rgba(184, 134, 11, 0.65) 68%, rgba(212, 175, 55, 0.5) 100%) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(212, 175, 55, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
html.theme-dark .capability_cards_grid .capability_card.premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5), 0 0 32px rgba(140, 83, 255, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.09);
}
html.theme-dark .capability_cards_grid .capability_card.premium .capability_card_image::after {
  background: linear-gradient(165deg, rgba(255, 220, 140, 0.12) 0%, transparent 48%, rgba(140, 83, 255, 0.1) 100%);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.22);
}
html.theme-dark .capability_cards_grid .capability_card .new_badge {
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(255, 45, 107, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
html.theme-dark .capability_cards_grid .capability_card .capability_level_badge {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
html.theme-dark .capability_cards_grid .capability_card .capability_level_badge.capability_level_badge--tier-4 {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45), 0 0 22px rgba(255, 184, 77, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
html.theme-dark .capability_cards_grid .capability_card .capability_card--lvl-1 {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(80, 197, 183, 0.35);
}
html.theme-dark .capability_cards_grid .capability_card .capability_card--lvl-1:hover {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(80, 197, 183, 0.48);
}
html.theme-dark .capability_cards_grid .capability_card .capability_card--lvl-2 {
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(140, 83, 255, 0.38);
}
html.theme-dark .capability_cards_grid .capability_card .capability_card--lvl-2:hover {
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(140, 83, 255, 0.5);
}
html.theme-dark .capability_cards_grid .capability_card .capability_card--lvl-3 {
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 138, 92, 0.42), 0 0 26px rgba(140, 83, 255, 0.12);
}
html.theme-dark .capability_cards_grid .capability_card .capability_card--lvl-3:hover {
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 138, 92, 0.5), 0 0 34px rgba(140, 83, 255, 0.16);
}
html.theme-dark .capability_cards_grid .capability_card .capability_card--lvl-4 {
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(255, 214, 102, 0.4), 0 0 40px rgba(111, 232, 255, 0.12), 0 0 56px rgba(255, 150, 210, 0.08);
}
html.theme-dark .capability_cards_grid .capability_card .capability_card--lvl-4:hover {
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 214, 102, 0.5), 0 0 48px rgba(111, 232, 255, 0.18), 0 0 64px rgba(255, 150, 210, 0.1);
}
html.theme-dark .cabinet {
  background: #1a1b23;
}
html.theme-dark .cabinet .cabinet_sidebar .cabinet_premium_until_inner {
  background: linear-gradient(135deg, rgba(255, 213, 79, 0.15) 0%, rgba(255, 179, 0, 0.1) 100%);
  border-color: rgba(255, 179, 0, 0.3);
}
html.theme-dark .cabinet .cabinet_sidebar .cabinet_premium_until_label {
  color: #d4b800;
}
html.theme-dark .cabinet .cabinet_sidebar .cabinet_premium_until_date {
  color: #e8e8f0;
}
html.theme-dark .cabinet .cabinet_sidebar .cabinet_premium_until_note {
  color: #a0a0b0;
}
html.theme-dark .cabinet .cabinet_sidebar .capability_card.sidebar {
  background: #25262e;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
html.theme-dark .cabinet .cabinet_sidebar .cabinet_user_image_mobile {
  border-color: #3a3b45;
  background: #2d2e38;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
html.theme-dark .cabinet .cabinet_stats__intro {
  color: #a0a0b0;
}
html.theme-dark .cabinet .cabinet_stats__main-tab {
  background: #1e1f26;
  border-color: #3a3b45;
  color: #c8c8d4;
}
html.theme-dark .cabinet .cabinet_stats__main-tab:hover {
  border-color: rgba(196, 166, 255, 0.45);
  color: #e8ddff;
}
html.theme-dark .cabinet .cabinet_stats__main-tab.is-active {
  background: linear-gradient(135deg, rgba(158, 82, 255, 0.95) 0%, rgba(120, 60, 200, 0.92) 100%);
  border-color: transparent;
  color: #fff;
}
html.theme-dark .cabinet .cabinet_stats__main-tab:focus-visible {
  outline-color: #c4a6ff;
}
html.theme-dark .cabinet .cabinet_stats__main-panel-empty {
  background: #25262e;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
  color: #a0a0b0;
}
html.theme-dark .cabinet .cabinet_stats__achievements {
  background: #25262e;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}
html.theme-dark .cabinet .cabinet_stats__achievements-title {
  color: #e8e8f0;
}
html.theme-dark .cabinet .cabinet_stats__achievements-hint {
  color: #a0a0b0;
}
html.theme-dark .cabinet .cabinet_stats__achievement {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(30, 31, 38, 0.96);
}
html.theme-dark .cabinet .cabinet_stats__achievement--locked {
  opacity: 0.58;
}
html.theme-dark .cabinet .cabinet_stats__achievement-title {
  color: #d8d8e8;
}
html.theme-dark .cabinet .cabinet_stats__achievement-desc {
  color: #9090a8;
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-registered.cabinet_stats__achievement--earned {
  border-color: rgba(129, 140, 248, 0.5);
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.38) 0%, rgba(129, 140, 248, 0.14) 42%, #1e1f26 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-registered.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: rgb(177.3157894737, 184.0977443609, 250.6842105263);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-registered.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(232, 232, 240, 0.75);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-registered.cabinet_stats__achievement--locked {
  border-color: rgba(255, 255, 255, 0.07);
  background: linear-gradient(145deg, rgba(67, 56, 202, 0.22) 0%, rgba(99, 102, 241, 0.1) 48%, #1a1b22 100%);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-registered.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: rgba(200, 200, 218, 0.52);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-registered.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(150, 150, 168, 0.42);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-first_task_day.cabinet_stats__achievement--earned {
  border-color: rgba(45, 212, 191, 0.5);
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.38) 0%, rgba(45, 212, 191, 0.14) 42%, #1e1f26 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-first_task_day.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: rgb(87.3320158103, 220.6679841897, 203.9011857708);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-first_task_day.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(232, 232, 240, 0.75);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-first_task_day.cabinet_stats__achievement--locked {
  border-color: rgba(255, 255, 255, 0.07);
  background: linear-gradient(145deg, rgba(15, 118, 110, 0.22) 0%, rgba(17, 94, 89, 0.1) 48%, #1a1b22 100%);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-first_task_day.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: rgba(200, 200, 218, 0.52);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-first_task_day.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(150, 150, 168, 0.42);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-first_success_day.cabinet_stats__achievement--earned {
  border-color: rgba(251, 191, 36, 0.5);
  background: linear-gradient(145deg, rgba(217, 119, 6, 0.38) 0%, rgba(251, 191, 36, 0.14) 42%, #1e1f26 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-first_success_day.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: rgb(251.9147982063, 205.6367713004, 86.0852017937);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-first_success_day.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(232, 232, 240, 0.75);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-first_success_day.cabinet_stats__achievement--locked {
  border-color: rgba(255, 255, 255, 0.07);
  background: linear-gradient(145deg, rgba(180, 83, 9, 0.22) 0%, rgba(146, 64, 14, 0.1) 48%, #1a1b22 100%);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-first_success_day.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: rgba(200, 200, 218, 0.52);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-first_success_day.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(150, 150, 168, 0.42);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-ten_tasks.cabinet_stats__achievement--earned {
  border-color: rgba(167, 139, 250, 0.5);
  background: linear-gradient(145deg, rgba(147, 51, 234, 0.38) 0%, rgba(167, 139, 250, 0.14) 42%, #1e1f26 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-ten_tasks.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: rgb(204.0909090909, 187.8925619835, 252.1074380165);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-ten_tasks.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(232, 232, 240, 0.75);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-ten_tasks.cabinet_stats__achievement--locked {
  border-color: rgba(255, 255, 255, 0.07);
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.22) 0%, rgba(91, 33, 182, 0.1) 48%, #1a1b22 100%);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-ten_tasks.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: rgba(200, 200, 218, 0.52);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-ten_tasks.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(150, 150, 168, 0.42);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_50.cabinet_stats__achievement--earned {
  border-color: rgba(56, 189, 248, 0.5);
  background: linear-gradient(145deg, rgba(2, 132, 199, 0.38) 0%, rgba(56, 189, 248, 0.14) 42%, #1e1f26 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_50.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: rgb(105.2669902913, 205.3398058252, 249.7330097087);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_50.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(232, 232, 240, 0.75);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_50.cabinet_stats__achievement--locked {
  border-color: rgba(255, 255, 255, 0.07);
  background: linear-gradient(145deg, rgba(3, 105, 161, 0.22) 0%, rgba(7, 89, 133, 0.1) 48%, #1a1b22 100%);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_50.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: rgba(200, 200, 218, 0.52);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_50.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(150, 150, 168, 0.42);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_100.cabinet_stats__achievement--earned {
  border-color: rgba(52, 211, 153, 0.5);
  background: linear-gradient(145deg, rgba(5, 150, 105, 0.38) 0%, rgba(52, 211, 153, 0.14) 42%, #1e1f26 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_100.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: rgb(93.9149797571, 220.0850202429, 174.0607287449);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_100.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(232, 232, 240, 0.75);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_100.cabinet_stats__achievement--locked {
  border-color: rgba(255, 255, 255, 0.07);
  background: linear-gradient(145deg, rgba(4, 120, 87, 0.22) 0%, rgba(6, 95, 70, 0.1) 48%, #1a1b22 100%);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_100.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: rgba(200, 200, 218, 0.52);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_100.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(150, 150, 168, 0.42);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_500.cabinet_stats__achievement--earned {
  border-color: rgba(251, 113, 133, 0.5);
  background: linear-gradient(145deg, rgba(225, 29, 72, 0.38) 0%, rgba(251, 113, 133, 0.14) 42%, #1e1f26 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_500.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: rgb(252.397260274, 162.602739726, 175.6164383562);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_500.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(232, 232, 240, 0.75);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_500.cabinet_stats__achievement--locked {
  border-color: rgba(255, 255, 255, 0.07);
  background: linear-gradient(145deg, rgba(190, 18, 60, 0.22) 0%, rgba(159, 18, 57, 0.1) 48%, #1a1b22 100%);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_500.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: rgba(200, 200, 218, 0.52);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_500.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(150, 150, 168, 0.42);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_1000.cabinet_stats__achievement--earned {
  border-color: rgba(129, 140, 248, 0.5);
  background: linear-gradient(145deg, rgba(79, 70, 229, 0.38) 0%, rgba(129, 140, 248, 0.14) 42%, #1e1f26 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_1000.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: rgb(177.3157894737, 184.0977443609, 250.6842105263);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_1000.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(232, 232, 240, 0.75);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_1000.cabinet_stats__achievement--locked {
  border-color: rgba(255, 255, 255, 0.07);
  background: linear-gradient(145deg, rgba(67, 56, 202, 0.22) 0%, rgba(55, 48, 163, 0.1) 48%, #1a1b22 100%);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_1000.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: rgba(200, 200, 218, 0.52);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_1000.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(150, 150, 168, 0.42);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_10000.cabinet_stats__achievement--earned {
  border-color: rgba(232, 121, 249, 0.5);
  background: linear-gradient(145deg, rgba(192, 38, 211, 0.38) 0%, rgba(232, 121, 249, 0.14) 42%, #1e1f26 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_10000.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: rgb(240.3785714286, 169.8142857143, 251.1857142857);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_10000.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(232, 232, 240, 0.75);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_10000.cabinet_stats__achievement--locked {
  border-color: rgba(255, 255, 255, 0.07);
  background: linear-gradient(145deg, rgba(162, 28, 175, 0.22) 0%, rgba(134, 25, 143, 0.1) 48%, #1a1b22 100%);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_10000.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: rgba(200, 200, 218, 0.52);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-tasks_10000.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(150, 150, 168, 0.42);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-ten_success_days.cabinet_stats__achievement--earned {
  border-color: rgba(163, 230, 53, 0.5);
  background: linear-gradient(145deg, rgba(101, 163, 13, 0.38) 0%, rgba(163, 230, 53, 0.14) 42%, #1e1f26 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-ten_success_days.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: rgb(183.6696035242, 235.6167400881, 98.3832599119);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-ten_success_days.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(232, 232, 240, 0.75);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-ten_success_days.cabinet_stats__achievement--locked {
  border-color: rgba(255, 255, 255, 0.07);
  background: linear-gradient(145deg, rgba(77, 124, 15, 0.22) 0%, rgba(63, 98, 18, 0.1) 48%, #1a1b22 100%);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-ten_success_days.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: rgba(200, 200, 218, 0.52);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-ten_success_days.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(150, 150, 168, 0.42);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_30.cabinet_stats__achievement--earned {
  border-color: rgba(34, 211, 238, 0.5);
  background: linear-gradient(145deg, rgba(8, 145, 178, 0.38) 0%, rgba(34, 211, 238, 0.14) 42%, #1e1f26 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_30.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: rgb(81.3571428571, 220.4285714286, 241.6428571429);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_30.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(232, 232, 240, 0.75);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_30.cabinet_stats__achievement--locked {
  border-color: rgba(255, 255, 255, 0.07);
  background: linear-gradient(145deg, rgba(14, 116, 144, 0.22) 0%, rgba(21, 94, 117, 0.1) 48%, #1a1b22 100%);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_30.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: rgba(200, 200, 218, 0.52);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_30.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(150, 150, 168, 0.42);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_50.cabinet_stats__achievement--earned {
  border-color: rgba(251, 146, 60, 0.5);
  background: linear-gradient(145deg, rgba(234, 88, 12, 0.38) 0%, rgba(251, 146, 60, 0.14) 42%, #1e1f26 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_50.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: rgb(252.0251256281, 173.9346733668, 109.9748743719);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_50.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(232, 232, 240, 0.75);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_50.cabinet_stats__achievement--locked {
  border-color: rgba(255, 255, 255, 0.07);
  background: linear-gradient(145deg, rgba(194, 65, 12, 0.22) 0%, rgba(154, 52, 18, 0.1) 48%, #1a1b22 100%);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_50.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: rgba(200, 200, 218, 0.52);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_50.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(150, 150, 168, 0.42);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_100.cabinet_stats__achievement--earned {
  border-color: rgba(244, 114, 182, 0.5);
  background: linear-gradient(145deg, rgba(219, 39, 119, 0.38) 0%, rgba(244, 114, 182, 0.14) 42%, #1e1f26 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_100.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: rgb(247.6907894737, 161.3092105263, 206.4934210526);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_100.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(232, 232, 240, 0.75);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_100.cabinet_stats__achievement--locked {
  border-color: rgba(255, 255, 255, 0.07);
  background: linear-gradient(145deg, rgba(190, 24, 93, 0.22) 0%, rgba(157, 23, 77, 0.1) 48%, #1a1b22 100%);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_100.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: rgba(200, 200, 218, 0.52);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_100.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(150, 150, 168, 0.42);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_365.cabinet_stats__achievement--earned {
  border-color: rgba(96, 165, 250, 0.5);
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.38) 0%, rgba(96, 165, 250, 0.14) 42%, #1e1f26 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_365.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: rgb(145.4451219512, 192.987804878, 251.5548780488);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_365.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(232, 232, 240, 0.75);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_365.cabinet_stats__achievement--locked {
  border-color: rgba(255, 255, 255, 0.07);
  background: linear-gradient(145deg, rgba(29, 78, 216, 0.22) 0%, rgba(30, 64, 175, 0.1) 48%, #1a1b22 100%);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_365.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: rgba(200, 200, 218, 0.52);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_365.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(150, 150, 168, 0.42);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_1000.cabinet_stats__achievement--earned {
  border-color: rgba(249, 115, 22, 0.5);
  background: linear-gradient(145deg, rgba(220, 38, 38, 0.38) 0%, rgba(249, 115, 22, 0.14) 42%, #1e1f26 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_1000.cabinet_stats__achievement--earned .cabinet_stats__achievement-title {
  color: rgb(250.280334728, 144.8744769874, 71.719665272);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_1000.cabinet_stats__achievement--earned .cabinet_stats__achievement-desc {
  color: rgba(232, 232, 240, 0.75);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_1000.cabinet_stats__achievement--locked {
  border-color: rgba(255, 255, 255, 0.07);
  background: linear-gradient(145deg, rgba(185, 28, 28, 0.22) 0%, rgba(153, 27, 27, 0.1) 48%, #1a1b22 100%);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_1000.cabinet_stats__achievement--locked .cabinet_stats__achievement-title {
  color: rgba(200, 200, 218, 0.52);
}
html.theme-dark .cabinet .cabinet_stats .cabinet_stats__achievement--id-success_days_1000.cabinet_stats__achievement--locked .cabinet_stats__achievement-desc {
  color: rgba(150, 150, 168, 0.42);
}
html.theme-dark .cabinet .cabinet_stats__block {
  background: #25262e;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}
html.theme-dark .cabinet .cabinet_stats__tab {
  background: #1e1f26;
  border-color: #3a3b45;
  color: #c8c8d4;
}
html.theme-dark .cabinet .cabinet_stats__tab:hover {
  border-color: rgba(196, 166, 255, 0.45);
  color: #e8ddff;
}
html.theme-dark .cabinet .cabinet_stats__tab.is-active {
  background: linear-gradient(135deg, rgba(158, 82, 255, 0.95) 0%, rgba(120, 60, 200, 0.92) 100%);
  border-color: transparent;
  color: #fff;
}
html.theme-dark .cabinet .cabinet_stats__tab:focus-visible {
  outline-color: #c4a6ff;
}
html.theme-dark .cabinet .cabinet_stats__range, html.theme-dark .cabinet .cabinet_stats__empty {
  color: #a0a0b0;
}
html.theme-dark .cabinet .cabinet_stats__you {
  color: #c4a6ff;
}
html.theme-dark .cabinet .cabinet_stats__table th, html.theme-dark .cabinet .cabinet_stats__table td {
  border-bottom-color: #3a3b45;
}
html.theme-dark .cabinet .cabinet_stats__table th {
  color: #c8c8d4;
  background: rgba(30, 31, 38, 0.85);
}
html.theme-dark .cabinet .cabinet_stats__row--self {
  background: rgba(158, 82, 255, 0.14);
}
html.theme-dark .cabinet .cabinet_stats__badge {
  color: #c4a6ff;
}
html.theme-dark .cabinet .cabinet_stats__medal svg {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}
html.theme-dark .cabinet .cabinet_stats__completed-programs {
  background: #25262e;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}
html.theme-dark .cabinet .cabinet_stats__completed-programs-title {
  color: #e8e8f0;
}
html.theme-dark .cabinet .cabinet_stats__completed-programs-hint, html.theme-dark .cabinet .cabinet_stats__completed-programs-empty, html.theme-dark .cabinet .cabinet_stats__completed-programs-meta {
  color: #a0a0b0;
}
html.theme-dark .cabinet .cabinet_stats__completed-programs-name {
  color: #e8e8f0;
}
html.theme-dark .cabinet .cabinet_stats__completed-programs-name a {
  color: rgb(127.7859649123, 91.6456140351, 171.1543859649);
}
html.theme-dark .cabinet .cabinet_stats__completed-programs-item {
  border-bottom-color: #3a3b45;
}
html.theme-dark .cabinet .cabinet_stats__completed-programs-progress-bar {
  background: rgba(255, 255, 255, 0.1);
}
html.theme-dark .cabinet .cabinet_stats__completed-programs-progress-text {
  color: #c8c8d4;
}
html.theme-dark .cabinet .cabinet_stats__completed-programs-progress-note {
  color: #9090a8;
}
html.theme-dark .cabinet .cabinet_stats__completed-programs-remove {
  color: #f0a8a6;
  background: rgba(240, 168, 166, 0.08);
  border-color: rgba(240, 168, 166, 0.35);
}
html.theme-dark .cabinet .cabinet_stats__completed-programs-remove:hover {
  background: rgba(240, 168, 166, 0.14);
  border-color: rgba(240, 168, 166, 0.5);
}
html.theme-dark .cabinet .cabinet_stats__completed-programs-remove:focus-visible {
  outline-color: rgba(240, 168, 166, 0.5);
}
html.theme-dark .cabinet .cabinet_welcome {
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(37, 38, 46, 0.96) 0%, rgba(26, 27, 35, 0.98) 100%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
html.theme-dark .cabinet .cabinet_welcome--all-done {
  border-color: rgba(76, 217, 100, 0.38);
  background: linear-gradient(145deg, rgba(76, 217, 100, 0.14) 0%, rgba(37, 38, 46, 0.95) 100%);
}
html.theme-dark .cabinet .cabinet_welcome .cabinet_welcome_title {
  color: #e8e8f0;
}
html.theme-dark .cabinet .cabinet_welcome .cabinet_welcome_subtitle {
  color: #a0a0b0;
}
html.theme-dark .cabinet .cabinet_welcome .cabinet_welcome_step {
  background: rgba(30, 31, 38, 0.72);
  border-color: rgba(255, 255, 255, 0.08);
}
html.theme-dark .cabinet .cabinet_welcome .cabinet_welcome_step--done {
  border-color: rgba(76, 217, 100, 0.42);
  background: rgba(76, 217, 100, 0.12);
}
html.theme-dark .cabinet .cabinet_welcome .cabinet_welcome_step_title {
  color: #e8e8f0;
}
html.theme-dark .cabinet .cabinet_welcome .cabinet_welcome_step_desc {
  color: #a0a0b0;
}
html.theme-dark .cabinet .cabinet_welcome .cabinet_welcome_done {
  color: #9dffb0;
  background: rgba(76, 217, 100, 0.14);
  border-color: rgba(76, 217, 100, 0.32);
}
html.theme-dark .cabinet .cabinet_welcome .cabinet_welcome_dismiss {
  color: #a0a0b0;
  border-color: rgba(255, 255, 255, 0.14);
}
html.theme-dark .cabinet .cabinet_welcome .cabinet_welcome_dismiss:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
}
html.theme-dark .cabinet .cabinet_welcome .cabinet_welcome_aside {
  background: rgba(30, 31, 38, 0.88);
  border-color: rgba(255, 255, 255, 0.08);
}
html.theme-dark .cabinet .cabinet_welcome .cabinet_welcome_aside_title {
  color: #888;
}
html.theme-dark .cabinet .cabinet_welcome .cabinet_welcome_link--premium {
  color: #1a1a1a;
}
html.theme-dark .cabinet .cabinet_welcome .cabinet_welcome_link--premium:hover {
  color: #1a1a1a;
}
html.theme-dark .cabinet .cabinet_main_area {
  color: #e2e2ea;
}
html.theme-dark .day-progress {
  background: #25262e;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}
html.theme-dark .day-progress__title,
html.theme-dark .day-progress__value {
  color: #e2e2ea;
}
html.theme-dark .day-progress__bar {
  background: #3a3b45;
}
html.theme-dark .streak-summary {
  background: #25262e;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}
html.theme-dark .streak-summary__title {
  color: #e2e2ea;
}
html.theme-dark .streak-summary__value {
  color: #c4a6ff;
}
html.theme-dark .streak-summary__hint {
  color: #a0a0b0;
}
html.theme-dark .week-summary {
  background: #25262e;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}
html.theme-dark .week-summary__title,
html.theme-dark .week-summary__hint {
  color: #e2e2ea;
}
html.theme-dark .week-summary__value {
  color: #c4a6ff;
}
html.theme-dark .week-summary__avg {
  color: #b8b8c8;
}
html.theme-dark .blog_grid_item_title a,
html.theme-dark .blog_grid_item_excerpt,
html.theme-dark .blog_grid_item_date {
  color: #d0d0dc;
}
html.theme-dark .blog_grid_item_title a:hover {
  color: #fff;
}
html.theme-dark .single.text .single_main_area,
html.theme-dark .single_main_area {
  background: #25262e;
  border-color: #3a3b45;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}
html.theme-dark .single.text h1,
html.theme-dark .single_hero_title {
  color: #e8e8f0;
}
html.theme-dark .single_info,
html.theme-dark .single_content {
  color: #e2e2ea;
}
html.theme-dark .single_content a {
  color: #c4a6ff;
  text-decoration-color: rgba(196, 166, 255, 0.55);
}
html.theme-dark .single_content a:hover {
  color: #e8ddff;
  text-decoration-color: rgba(232, 221, 255, 0.85);
}
html.theme-dark .single_content a:focus-visible {
  outline: 2px solid #c4a6ff;
  outline-offset: 2px;
}
html.theme-dark .single_content a:visited {
  color: #b894ff;
}
html.theme-dark .single_content figcaption,
html.theme-dark .single_content .wp-caption-text {
  color: #a3a8bd;
}
html.theme-dark .single_content figure img {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}
html.theme-dark .archive {
  color: #e2e2ea;
}
html.theme-dark .categories_block .category_link {
  color: #a0a0b0;
}
html.theme-dark .categories_block .category_link.active {
  color: #b8a0ff;
}
html.theme-dark .response_wrap {
  background: transparent;
}
html.theme-dark .calendar_events .calendar_event {
  background: #25262e;
  border-color: #3a3b45;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
html.theme-dark .calendar_events .calendar_event .calendar_event_desc--rich {
  color: #c8c8d4;
}
html.theme-dark .calendar_events .calendar_event .calendar_event_desc--rich a {
  color: #c4a6ff;
}
html.theme-dark .calendar_events .calendar_event .calendar_event_title {
  color: #e8e8f0;
}
html.theme-dark .calendar_events .calendar_event .calendar_event_desc:not(.calendar_event_desc--rich) {
  color: #a0a0b0;
}
html.theme-dark .cabinet_main_area .calendar,
html.theme-dark #calendar_today,
html.theme-dark #calendar_tomorrow {
  background: #25262e;
  border-color: #3a3b45;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
html.theme-dark .cabinet_main_area .fc,
html.theme-dark #calendar_today .fc,
html.theme-dark #calendar_tomorrow .fc {
  --fc-border-color:#3a3b45;
  --fc-button-bg-color:#2d2e38;
  --fc-button-border-color:#3a3b45;
  --fc-button-hover-bg-color:#35364a;
  --fc-button-hover-border-color:#8C53FF;
  --fc-button-active-bg-color:#8C53FF;
}
html.theme-dark .cabinet_main_area .fc .fc-toolbar-title,
html.theme-dark #calendar_today .fc-toolbar-title,
html.theme-dark #calendar_tomorrow .fc-toolbar-title {
  color: #e8e8f0;
}
html.theme-dark .cabinet_main_area .fc .fc-list-day-cushion,
html.theme-dark #calendar_today .fc-list-day-cushion,
html.theme-dark #calendar_tomorrow .fc-list-day-cushion {
  background: #2d2e38;
  color: #b8a0ff;
}
html.theme-dark .cabinet_main_area .fc .fc-list-event td,
html.theme-dark #calendar_today .fc-list-event td,
html.theme-dark #calendar_tomorrow .fc-list-event td {
  border-color: #3a3b45;
}
html.theme-dark .cabinet_main_area .fc .fc-list-event-time,
html.theme-dark #calendar_today .fc-list-event-time,
html.theme-dark #calendar_tomorrow .fc-list-event-time {
  color: #888;
}
html.theme-dark .cabinet_main_area .fc .fc-list-event:hover td,
html.theme-dark #calendar_today .fc-list-event:hover td,
html.theme-dark #calendar_tomorrow .fc-list-event:hover td {
  background: rgba(140, 83, 255, 0.08);
}
html.theme-dark .cabinet_main_area .event-todo-wrapper .event-todo-title,
html.theme-dark #calendar_today .event-todo-wrapper .event-todo-title,
html.theme-dark #calendar_tomorrow .event-todo-wrapper .event-todo-title {
  color: #e2e2ea;
}
html.theme-dark .faq_question {
  color: #e2e2ea;
}
html.theme-dark .faq .faq_icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}
html.theme-dark .faq_answer_inner {
  color: #c8c8d4;
}
html.theme-dark .cabinet_info.create_info_card {
  background: #25262e;
  border-color: #3a3b45;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}
html.theme-dark .cabinet_info.create_info_card .cabinet_info_title {
  color: #e8e8f0;
}
html.theme-dark .cabinet_info.create_info_card .cabinet_info_message {
  color: #c8c8d4;
}
html.theme-dark .cabinet_info.create_info_card::before {
  background: linear-gradient(180deg, rgba(255, 58, 45, 0.9) 0%, rgba(255, 140, 0, 0.7) 100%);
}
html.theme-dark .cabinet_info.create_info_card .cabinet_info_title::before {
  background-color: rgba(255, 58, 45, 0.12);
}
html.theme-dark .cabinet_info.create_info_card .daybooster_btn.remove_single {
  background: rgba(255, 58, 45, 0.14);
  color: #ffb4ae;
  border-color: rgba(255, 58, 45, 0.32);
}
html.theme-dark .cabinet_info.create_info_card .daybooster_btn.remove_single:hover {
  background: rgba(255, 58, 45, 0.18);
}
html.theme-dark .cabinet_info.create_info_card .daybooster_btn.remove_single:focus {
  background: rgba(255, 58, 45, 0.22);
}
html.theme-dark .single_sidebar .single_sidebar_block {
  background: #25262e;
  border-color: #3a3b45;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}
html.theme-dark .single_sidebar .single_sidebar_title {
  color: #e8e8f0;
}
html.theme-dark .single_sidebar .action_videos {
  scrollbar-color: rgba(184, 160, 255, 0.35) rgba(255, 255, 255, 0.06);
}
html.theme-dark .single_sidebar .action_video_single {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.1);
}
html.theme-dark .single_sidebar .action_video_single::before {
  background: rgba(255, 255, 255, 0.1);
}
html.theme-dark .questions_form #questions_form {
  background: #25262e;
  border-color: #3a3b45;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}
html.theme-dark .questions_form #questions_form .step_title {
  color: #e8e8f0;
}
html.theme-dark .questions_form #questions_form .step_note {
  color: #e2e2ea;
  border-color: rgba(184, 160, 255, 0.22);
  background: rgba(184, 160, 255, 0.08);
}
html.theme-dark .questions_form #questions_form .step_note--warning {
  border-color: rgba(255, 179, 0, 0.22);
  background: rgba(255, 179, 0, 0.1);
}
html.theme-dark .questions_form #questions_form input.daybooster_input {
  background: #1a1b23;
  border-color: #3a3b45;
  color: #e2e2ea;
}
html.theme-dark .create_premium_gate .create_capability_title {
  color: #e8e8f0;
}
html.theme-dark .create_premium_required {
  background: radial-gradient(520px 120px at 12% -20%, rgba(140, 83, 255, 0.2) 0%, rgba(140, 83, 255, 0) 55%), #25262e;
  border-color: #3a3b45;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}
html.theme-dark .create_premium_required::before {
  background: linear-gradient(180deg, #b8a0ff 0%, rgba(140, 83, 255, 0.75) 100%);
}
html.theme-dark .create_premium_required__lead {
  color: #e8e8f0;
}
html.theme-dark .create_premium_required__lead::before {
  background-color: rgba(140, 83, 255, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b8a0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E");
}
html.theme-dark .create_premium_required__hint {
  color: #a0a0b0;
}
html.theme-dark .daybooster_input {
  background: #1a1b23;
  border-color: #3a3b45;
  color: #e2e2ea;
}
html.theme-dark .daybooster_input::placeholder {
  color: rgba(226, 226, 234, 0.55);
}
html.theme-dark .daybooster_input:focus {
  border-color: #8C53FF;
  box-shadow: 0 0 0 2px rgba(140, 83, 255, 0.18);
  outline: none;
}
html.theme-dark .step_response {
  background: #25262e;
  border-color: #3a3b45;
}
html.theme-dark .step_response_item {
  color: #e2e2ea;
}
html.theme-dark .step_response_subtitle {
  color: #e8e8f0;
}
html.theme-dark .cabinet_settings .settings_login_display {
  background: #1a1b23;
  color: #a0a0b0;
}
html.theme-dark .settings_password_row .settings_password_label {
  color: #a0a0b0;
}
html.theme-dark .settings_time_wrap .settings_time_row {
  background: #25262e;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}
html.theme-dark .settings_time_label {
  color: #c8c8d4;
}
html.theme-dark .settings_time_input {
  background: #1a1b23;
  border-color: #3a3b45;
  color: #e2e2ea;
}
html.theme-dark .steps .step_description, html.theme-dark .steps .step_count {
  color: #fff;
}
html.theme-dark .premium_cta_block {
  background: linear-gradient(135deg, rgba(255, 213, 79, 0.08) 0%, rgba(255, 179, 0, 0.06) 100%);
  border-color: rgba(255, 179, 0, 0.25);
}
html.theme-dark .premium_cta_block .premium_cta_block_title {
  color: #e8e8f0;
}
html.theme-dark .premium_cta_block .premium_cta_block_desc {
  color: #a0a0b0;
}
html.theme-dark .premium_cta_block .premium_cta_block_badge {
  color: #1a1a1a;
}
html.theme-dark .premium_cta_block--owned .premium_cta_block_text {
  color: #a0a0b0;
}
html.theme-dark .cabinet_settings .settings_premium_digest {
  border-color: rgba(255, 179, 0, 0.28);
  background: linear-gradient(135deg, rgba(255, 213, 79, 0.1) 0%, rgba(255, 179, 0, 0.05) 50%, rgba(140, 83, 255, 0.1) 100%);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.22);
}
html.theme-dark .cabinet_settings .settings_premium_digest .settings_premium_digest_lead {
  color: #c8c8d4;
}
html.theme-dark .cabinet_settings .settings_premium_digest .settings_premium_digest_channel {
  background: rgba(30, 31, 38, 0.88);
  border-color: rgba(255, 255, 255, 0.08);
}
html.theme-dark .cabinet_settings .settings_premium_digest .settings_premium_digest_foot {
  border-top-color: rgba(255, 255, 255, 0.1);
}
html.theme-dark .cabinet_settings .settings_premium_digest .settings_premium_digest_hint {
  color: #a0a0b0;
}
html.theme-dark .cabinet_settings .settings_premium_digest .settings_premium_digest_status {
  color: #7ee8a0;
}
html.theme-dark .cabinet_settings .settings_premium_digest .settings_premium_digest_status--muted {
  color: #a0a0b0;
}
html.theme-dark .cabinet_settings .settings_premium_digest--unlocked {
  border-color: rgba(76, 217, 100, 0.35);
  background: linear-gradient(135deg, rgba(76, 217, 100, 0.12) 0%, rgba(30, 31, 38, 0.55) 100%);
}
html.theme-dark .cabinet_settings .settings_premium_digest--unlocked .settings_premium_digest_channel {
  background: rgba(30, 31, 38, 0.95);
  border-color: rgba(76, 217, 100, 0.22);
}
html.theme-dark .cabinet_settings .dashboard_row--premium-messenger {
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(83, 58, 113, 0.22) 0%, rgba(255, 213, 79, 0.05) 100%);
}
html.theme-dark .cabinet_settings .settings_block:not(.settings_account_delete) {
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(37, 38, 46, 0.94) 0%, rgba(30, 31, 38, 0.9) 55%, rgba(28, 29, 36, 0.88) 100%);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}
html.theme-dark .cabinet_settings .settings_block:not(.settings_account_delete)::before {
  background: linear-gradient(180deg, rgba(196, 166, 255, 0.95) 0%, rgba(140, 83, 255, 0.75) 50%, rgba(83, 58, 113, 0.7) 100%);
}
html.theme-dark .cabinet_settings .settings_block:not(.settings_account_delete) > h3 {
  color: #e8e8f0;
}
html.theme-dark .cabinet_settings .settings_account_delete {
  border-color: rgba(239, 83, 80, 0.35);
  background: linear-gradient(145deg, rgba(239, 83, 80, 0.12) 0%, rgba(30, 31, 38, 0.72) 55%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}
html.theme-dark .cabinet_settings .settings_account_delete h3 {
  color: #ff8a80;
}
html.theme-dark .cabinet_settings .settings_account_delete .settings_account_delete__lead {
  color: #c8c8d4;
}
html.theme-dark .cabinet_settings .settings_account_delete .settings_account_delete__list {
  color: #e2e2ea;
}
html.theme-dark .cabinet_settings .settings_account_delete .settings_account_delete__legal {
  background: rgba(25, 26, 32, 0.75);
  border-color: rgba(255, 255, 255, 0.08);
  color: #a0a0b0;
}
html.theme-dark .cabinet_settings .settings_account_delete .settings_account_delete__legal strong {
  color: #e8e8f0;
}
html.theme-dark .cabinet_settings .settings_account_delete .settings_account_delete__form label[for=daybooster_delete_account_password] {
  color: #c8c8d4;
}
html.theme-dark .cabinet_settings .settings_account_delete .settings_account_delete__form .regular-text {
  background: #1a1b23;
  border-color: #3a3b45;
  color: #e2e2ea;
}
html.theme-dark .cabinet_settings .settings_account_delete .settings_account_delete__form .regular-text:focus {
  border-color: #8C53FF;
  box-shadow: 0 0 0 2px rgba(140, 83, 255, 0.18);
}
html.theme-dark .cabinet_settings .settings_account_delete .settings_account_delete__check {
  color: #e2e2ea;
}
html.theme-dark .cabinet_settings .settings_account_delete .settings_account_delete__hint {
  color: #a0a0b0;
}
html.theme-dark .cabinet_settings--tabs .cabinet_settings_tabs_nav {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
html.theme-dark .cabinet_settings--tabs .cabinet_settings_tab {
  background: rgba(37, 38, 46, 0.9);
  border-color: rgba(255, 255, 255, 0.12);
  color: #c8c8d4;
}
html.theme-dark .cabinet_settings--tabs .cabinet_settings_tab[aria-selected=true] {
  color: #fff;
}
html.theme-dark .cabinet_settings .settings_shop_account__hint {
  color: #a0a0b0;
}
html.theme-dark .cabinet_settings .settings_shop_account__muted {
  color: #808090;
}
html.theme-dark .cabinet_settings .settings_shop_account__table th, html.theme-dark .cabinet_settings .settings_shop_account__table td {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
html.theme-dark .cabinet_settings .settings_shop_account__table th, html.theme-dark .cabinet_settings .settings_shop_account__sub_status, html.theme-dark .cabinet_settings .settings_shop_account__sub_next {
  color: #a0a0b0;
}
html.theme-dark .cabinet_settings .settings_shop_account__pay_actions a {
  color: #c4b5fd;
}
html.theme-dark .cabinet_settings .settings_shop_account__pay_delete {
  color: #ff8a80 !important;
}
html.theme-dark .daybooster-account-deleted-banner {
  background: rgba(76, 217, 100, 0.14);
  border-color: rgba(76, 217, 100, 0.38);
  color: #a5d6a7;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}
html.theme-dark .recommendBlock_title {
  color: #fff;
}
html.theme-dark .plans_compare .plans_compare_title {
  color: #e8e8f0;
}
html.theme-dark .plans_compare .plans_compare_col {
  border-color: #3a3b45;
  background: #25262e;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
html.theme-dark .plans_compare .plans_compare_col--premium {
  border-color: rgba(255, 179, 0, 0.3);
  background: linear-gradient(135deg, rgba(255, 213, 79, 0.08) 0%, rgba(255, 179, 0, 0.06) 100%);
}
html.theme-dark .plans_compare .plans_compare_plan_name {
  color: #e8e8f0;
}
html.theme-dark .plans_compare .plans_compare_item {
  color: #a0a0b0;
}
html.theme-dark .plans_compare .plans_compare_note {
  color: #888;
}
html.theme-dark .plans_compare .plans_compare_owned {
  color: #4CD964;
}
html.theme-dark .calendar_events .calendar_event_title {
  color: #fff;
}
html.theme-dark .today_advices {
  border-top-color: #3a3b45;
}
html.theme-dark .today_advices .today_advices_title {
  color: #e8e8f0;
}
html.theme-dark .today_advices .today_advices_direction {
  background: #25262e;
  border-color: #3a3b45;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
html.theme-dark .today_advices .today_advices_direction_title {
  color: #e8e8f0;
  border-bottom-color: #3a3b45;
}
html.theme-dark .today_advices .today_advices_list li {
  color: #a0a0b0;
}
html.theme-dark .today_advices .today_advices_list li::before {
  background-color: rgba(140, 83, 255, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b8a0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z'/%3E%3C/svg%3E");
}
html.theme-dark .today_advices .today_advices_list a {
  color: #fff;
  text-decoration: underline;
}
html.theme-dark .cabinet_settings .input_hint {
  color: #fff;
}
html.theme-dark .edit-post-visual-editor .editor-block-list__block .wc-block-grid__product-title, html.theme-dark .editor-styles-wrapper .wc-block-grid__product-title, html.theme-dark .wc-block-grid__product-title {
  color: #fff;
}

/* ========== Отдельная страница товара (single product) ========== */
body.single-product .woocommerce {
  padding-top: 0;
  padding-bottom: 60px;
}

body.single-product div.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
  align-items: start;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  body.single-product div.product {
    grid-template-columns: 1fr;
  }
}

body.single-product div.product .summary {
  top: 90px;
  background: linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
  border: 1px solid #eceaf8;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(20, 26, 33, 0.08);
  padding: 22px 22px 18px;
  align-self: flex-start;
  position: sticky;
}
@media (max-width: 900px) {
  body.single-product div.product .summary {
    position: static;
    top: auto;
    padding: 16px;
  }
}

body.single-product div.product .woocommerce-product-gallery,
body.single-product div.product .images {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  border: 1px solid #eceaf8;
  background: #fff;
  margin: 0 0 8px;
  padding: 14px;
  box-shadow: 0 12px 32px rgba(20, 26, 33, 0.08);
}

body.single-product div.product .woocommerce-product-gallery__wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.single-product div.product .woocommerce-product-gallery[data-columns="3"] .woocommerce-product-gallery__wrapper {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.single-product div.product .woocommerce-product-gallery[data-columns="5"] .woocommerce-product-gallery__wrapper {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

body.single-product div.product .woocommerce-product-gallery__image:first-child {
  grid-column: 1/-1;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #f4f2fb;
  position: relative;
}
body.single-product div.product .woocommerce-product-gallery__image:first-child a {
  display: block;
  line-height: 0;
}
body.single-product div.product .woocommerce-product-gallery__image:first-child img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
  border-radius: 0;
}

body.single-product div.product .woocommerce-product-gallery__image:nth-child(n+2) {
  width: auto !important;
  max-width: none;
  display: block !important;
  margin: 0;
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e4e0f5;
  background: #faf8ff;
  box-shadow: 0 2px 8px rgba(20, 26, 33, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
body.single-product div.product .woocommerce-product-gallery__image:nth-child(n+2) a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
}
body.single-product div.product .woocommerce-product-gallery__image:nth-child(n+2) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
body.single-product div.product .woocommerce-product-gallery__image:nth-child(n+2):hover {
  border-color: #b8a8f0;
  box-shadow: 0 6px 18px rgba(140, 83, 255, 0.18);
  transform: translateY(-1px);
}
body.single-product div.product .woocommerce-product-gallery__image:nth-child(n+2):focus-within {
  outline: 2px solid #8C53FF;
  outline-offset: 2px;
}

body.single-product div.product .woocommerce-product-gallery__trigger {
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 14px rgba(20, 26, 33, 0.12);
  border: 1px solid #eceaf8;
}
body.single-product div.product .woocommerce-product-gallery__trigger::before {
  border-color: #6C40C4;
}
body.single-product div.product .woocommerce-product-gallery__trigger::after {
  background: #6C40C4;
}
body.single-product div.product .woocommerce-product-gallery__trigger:hover {
  background: #fff;
  box-shadow: 0 6px 18px rgba(140, 83, 255, 0.22);
}

body.single-product div.product .flex-control-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  overflow: visible;
}
body.single-product div.product .flex-control-thumbs li {
  float: none;
  width: auto;
  flex: 0 0 calc(25% - 8px);
  max-width: calc(25% - 8px);
  margin: 0;
  list-style: none;
}
body.single-product div.product .flex-control-thumbs li img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  border: 1px solid #e4e0f5;
  opacity: 0.65;
  cursor: pointer;
  transition: opacity 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
body.single-product div.product .flex-control-thumbs li img.flex-active, body.single-product div.product .flex-control-thumbs li img:hover {
  opacity: 1;
  border-color: #8C53FF;
  box-shadow: 0 4px 12px rgba(140, 83, 255, 0.2);
}

@media (max-width: 560px) {
  body.single-product div.product .woocommerce-product-gallery__wrapper {
    gap: 10px;
  }
  body.single-product div.product .woocommerce-product-gallery[data-columns="4"] .woocommerce-product-gallery__wrapper,
  body.single-product div.product .woocommerce-product-gallery[data-columns="5"] .woocommerce-product-gallery__wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
html.theme-dark body.single-product.woocommerce div.product .woocommerce-product-gallery,
html.theme-dark body.single-product.woocommerce div.product .images {
  border-color: #3a3b45;
  background: linear-gradient(180deg, #25262e 0%, #1e1f26 100%);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

html.theme-dark body.single-product.woocommerce div.product .woocommerce-product-gallery__image:first-child {
  background: #1a1b23;
}

html.theme-dark body.single-product.woocommerce div.product .woocommerce-product-gallery__image:nth-child(n+2) {
  border-color: #3a3b45;
  background: #1a1b23;
  box-shadow: none;
}
html.theme-dark body.single-product.woocommerce div.product .woocommerce-product-gallery__image:nth-child(n+2):hover {
  border-color: #6C40C4;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

html.theme-dark body.single-product.woocommerce div.product .woocommerce-product-gallery__trigger {
  background: rgba(36, 37, 46, 0.92);
  border-color: #3a3b45;
}
html.theme-dark body.single-product.woocommerce div.product .woocommerce-product-gallery__trigger::before {
  border-color: #d3beff;
}
html.theme-dark body.single-product.woocommerce div.product .woocommerce-product-gallery__trigger::after {
  background: #d3beff;
}

html.theme-dark body.single-product.woocommerce div.product .flex-control-thumbs li img {
  border-color: #3a3b45;
}
html.theme-dark body.single-product.woocommerce div.product .flex-control-thumbs li img.flex-active, html.theme-dark body.single-product.woocommerce div.product .flex-control-thumbs li img:hover {
  border-color: #8C53FF;
}

body.single-product div.product .summary .product_title {
  font-size: 28px;
  font-weight: 700;
  color: #26252E;
  margin: 0 0 16px;
  line-height: 1.3;
}

body.single-product div.product .summary .price {
  font-size: 24px;
  font-weight: 700;
  color: #8C53FF;
  margin: 0 0 20px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
body.single-product div.product .summary .price del {
  color: #9a98ad;
  font-size: 18px;
  opacity: 0.85;
}
body.single-product div.product .summary .price ins {
  text-decoration: none;
  color: #8C53FF;
}

body.single-product div.product .summary .woocommerce-product-details__short-description {
  font-size: 15px;
  line-height: 1.65;
  color: #555;
  margin: 0 0 24px;
  padding: 24px 28px;
  border-radius: 14px;
  background: linear-gradient(180deg, #faf8ff 0%, #f4f2fb 100%);
  border: 1px solid #eceaf8;
  box-shadow: 0 4px 14px rgba(20, 26, 33, 0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
body.single-product div.product .summary .woocommerce-product-details__short-description > * {
  margin: 0;
}
body.single-product div.product .summary .woocommerce-product-details__short-description ul, body.single-product div.product .summary .woocommerce-product-details__short-description ol {
  padding-left: 1.25em;
}

body.single-product div.product .cart {
  margin-bottom: 24px;
}
body.single-product div.product .cart .quantity {
  margin-right: 12px;
}
body.single-product div.product .cart .quantity input.qty {
  width: 70px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7d5f5;
  font-size: 16px;
  text-align: center;
}
body.single-product div.product .cart .quantity input.qty:focus {
  border-color: #8C53FF;
  outline: none;
}
body.single-product div.product .cart .single_add_to_cart_button {
  padding: 14px 28px;
  background: #8C53FF;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}
body.single-product div.product .cart .single_add_to_cart_button:hover {
  background: #7746D8;
}

body.single-product .woocommerce-tabs.wc-tabs-wrapper {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #eceaf8;
  width: 100%;
  grid-column: 1/-1;
}

body.single-product .woocommerce-tabs ul.tabs {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  border: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
body.single-product .woocommerce-tabs ul.tabs::before {
  display: none;
}
body.single-product .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  border: none;
}
body.single-product .woocommerce-tabs ul.tabs li a {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 12px;
  color: #26252E;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}
body.single-product .woocommerce-tabs ul.tabs li.active a,
body.single-product .woocommerce-tabs ul.tabs li a:hover {
  color: #fff;
}

body.single-product .woocommerce-Tabs-panel {
  padding: 24px 28px;
  margin: 0;
}
body.single-product .woocommerce-Tabs-panel h2 {
  font-size: 20px;
  margin: 0 0 16px;
  color: #26252E;
}
body.single-product .woocommerce-Tabs-panel p, body.single-product .woocommerce-Tabs-panel li {
  line-height: 1.6;
  color: #555;
}
body.single-product .woocommerce-Tabs-panel table.woocommerce-product-attributes {
  width: 100%;
  border-collapse: collapse;
}
body.single-product .woocommerce-Tabs-panel table.woocommerce-product-attributes th, body.single-product .woocommerce-Tabs-panel table.woocommerce-product-attributes td {
  padding: 12px 16px;
  border-bottom: 1px solid #eceaf8;
  text-align: left;
}
body.single-product .woocommerce-Tabs-panel table.woocommerce-product-attributes th {
  font-weight: 600;
  color: #26252E;
  width: 40%;
}

body.single-product .woocommerce-Tabs-panel--description {
  padding: 28px 32px;
  border-radius: 16px;
  background: linear-gradient(180deg, #faf8ff 0%, #f4f2fb 100%);
  border: 1px solid #eceaf8;
  box-shadow: 0 4px 18px rgba(20, 26, 33, 0.06);
  font-size: 15px;
  line-height: 1.65;
  color: #555;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
body.single-product .woocommerce-Tabs-panel--description > * {
  margin: 0;
}
body.single-product .woocommerce-Tabs-panel--description h2 {
  font-size: 20px;
  font-weight: 700;
  color: #26252E;
  line-height: 1.35;
}
body.single-product .woocommerce-Tabs-panel--description h3 {
  font-size: 17px;
  font-weight: 700;
  color: #26252E;
  line-height: 1.4;
}
body.single-product .woocommerce-Tabs-panel--description h4 {
  font-size: 16px;
  font-weight: 700;
  color: #26252E;
}
body.single-product .woocommerce-Tabs-panel--description p, body.single-product .woocommerce-Tabs-panel--description li {
  color: #555;
  line-height: 1.65;
}
body.single-product .woocommerce-Tabs-panel--description ul, body.single-product .woocommerce-Tabs-panel--description ol {
  padding-left: 1.35em;
}
body.single-product .woocommerce-Tabs-panel--description ul li::marker {
  color: #8C53FF;
}
body.single-product .woocommerce-Tabs-panel--description a {
  color: #6C40C4;
  text-decoration: underline;
  text-underline-offset: 2px;
}
body.single-product .woocommerce-Tabs-panel--description a:hover {
  color: #8C53FF;
}
body.single-product .woocommerce-Tabs-panel--description blockquote {
  margin: 0;
  padding: 14px 18px 14px 20px;
  border-left: 4px solid #8C53FF;
  border-radius: 0 12px 12px 0;
  background: rgba(140, 83, 255, 0.07);
  color: #4a4858;
  font-style: normal;
}
body.single-product .woocommerce-Tabs-panel--description img, body.single-product .woocommerce-Tabs-panel--description video {
  border-radius: 12px;
  max-width: 100%;
  height: auto;
}
body.single-product .woocommerce-Tabs-panel--description table:not(.woocommerce-product-attributes) {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
body.single-product .woocommerce-Tabs-panel--description table:not(.woocommerce-product-attributes) th, body.single-product .woocommerce-Tabs-panel--description table:not(.woocommerce-product-attributes) td {
  padding: 10px 14px;
  border: 1px solid #e4e0f5;
  text-align: left;
}
body.single-product .woocommerce-Tabs-panel--description table:not(.woocommerce-product-attributes) th {
  background: rgba(140, 83, 255, 0.08);
  color: #26252E;
  font-weight: 600;
}

html.theme-dark body.single-product.woocommerce .woocommerce-Tabs-panel--description {
  padding: 28px 32px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid #33343e;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: #b2b2c2;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
html.theme-dark body.single-product.woocommerce .woocommerce-Tabs-panel--description > * {
  margin: 0;
}
html.theme-dark body.single-product.woocommerce .woocommerce-Tabs-panel--description h2, html.theme-dark body.single-product.woocommerce .woocommerce-Tabs-panel--description h3, html.theme-dark body.single-product.woocommerce .woocommerce-Tabs-panel--description h4 {
  color: #e8e8f0;
}
html.theme-dark body.single-product.woocommerce .woocommerce-Tabs-panel--description h2 {
  font-size: 20px;
}
html.theme-dark body.single-product.woocommerce .woocommerce-Tabs-panel--description h3 {
  font-size: 17px;
}
html.theme-dark body.single-product.woocommerce .woocommerce-Tabs-panel--description p, html.theme-dark body.single-product.woocommerce .woocommerce-Tabs-panel--description li {
  color: #b8b6c8;
  line-height: 1.65;
}
html.theme-dark body.single-product.woocommerce .woocommerce-Tabs-panel--description ul, html.theme-dark body.single-product.woocommerce .woocommerce-Tabs-panel--description ol {
  padding-left: 1.35em;
}
html.theme-dark body.single-product.woocommerce .woocommerce-Tabs-panel--description ul li::marker {
  color: #b8a0ff;
}
html.theme-dark body.single-product.woocommerce .woocommerce-Tabs-panel--description a {
  color: #d3beff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
html.theme-dark body.single-product.woocommerce .woocommerce-Tabs-panel--description a:hover {
  color: #ece8ff;
}
html.theme-dark body.single-product.woocommerce .woocommerce-Tabs-panel--description blockquote {
  border-left: 4px solid #8C53FF;
  border-radius: 0 12px 12px 0;
  background: rgba(140, 83, 255, 0.12);
  color: #c8c6d4;
}
html.theme-dark body.single-product.woocommerce .woocommerce-Tabs-panel--description img, html.theme-dark body.single-product.woocommerce .woocommerce-Tabs-panel--description video {
  border-radius: 12px;
}
html.theme-dark body.single-product.woocommerce .woocommerce-Tabs-panel--description table:not(.woocommerce-product-attributes) th, html.theme-dark body.single-product.woocommerce .woocommerce-Tabs-panel--description table:not(.woocommerce-product-attributes) td {
  border-color: #3a3b45;
}
html.theme-dark body.single-product.woocommerce .woocommerce-Tabs-panel--description table:not(.woocommerce-product-attributes) th {
  background: rgba(140, 83, 255, 0.15);
  color: #e8e8f0;
}

body.single-product .related.products,
body.single-product .upsells.products {
  width: 100%;
  grid-column: 1/-1;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #eceaf8;
}
body.single-product .related.products h2,
body.single-product .upsells.products h2 {
  font-size: 22px;
  font-weight: 600;
  color: #26252E;
  margin: 0 0 24px;
}
body.single-product .related.products ul.products,
body.single-product .upsells.products ul.products {
  margin-bottom: 0;
}

.db-promo-screens {
  width: 100%;
  grid-column: 1/-1;
  margin: 36px 0 14px;
  padding: 26px;
  border: 1px solid #eceaf8;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
  box-shadow: 0 14px 34px rgba(20, 26, 33, 0.08);
}
.db-promo-screens__head {
  margin-bottom: 20px;
}
.db-promo-screens__eyebrow {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 18px;
  background: rgba(140, 83, 255, 0.12);
  color: #6c40c4;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.db-promo-screens__title {
  margin: 12px 0 8px;
  font-size: 30px;
  line-height: 1.2;
  color: #26252E;
}
.db-promo-screens__subtitle {
  margin: 0;
  color: #5d5a6b;
  font-size: 15px;
  line-height: 1.55;
  max-width: 760px;
}
.db-promo-screens__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.db-promo-screens__offer {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #8C53FF 0%, #6C40C4 100%);
  color: #fff;
}
.db-promo-screens__offer-text {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: baseline;
}
.db-promo-screens__offer-text strong {
  font-size: 18px;
}
.db-promo-screens__offer-text span {
  opacity: 0.95;
  font-size: 14px;
}

.db-reviews {
  width: 100%;
  grid-column: 1/-1;
  padding: 0 26px 36px;
  margin-top: -6px;
}
.db-reviews__head {
  margin: 0 0 20px;
  max-width: 860px;
}
.db-reviews__eyebrow {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 18px;
  background: rgba(76, 217, 100, 0.12);
  color: #369A46;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.db-reviews__title {
  margin: 12px 0 8px;
  font-size: 28px;
  line-height: 1.2;
  color: #26252E;
  font-weight: 800;
}
.db-reviews__subtitle {
  margin: 0;
  color: #5d5a6b;
  font-size: 15px;
  line-height: 1.6;
}
.db-reviews__slider-wrap {
  position: relative;
}
.db-reviews__controls {
  display: none;
}
.db-reviews__viewport {
  margin: 0;
}
.db-reviews__track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.db-reviews__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #d4ecd9;
  background: #fff;
  color: #369A46;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(38, 37, 46, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.db-reviews__btn:hover:not(:disabled) {
  background: rgba(76, 217, 100, 0.12);
  border-color: rgba(54, 154, 70, 0.4);
}
.db-reviews__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.db-reviews__btn:focus-visible {
  outline: 2px solid rgba(54, 154, 70, 0.45);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .db-reviews {
    padding: 0 18px 28px;
  }
  .db-reviews__title {
    font-size: 24px;
  }
  .db-reviews__controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 12px;
  }
  .db-reviews__viewport {
    container-type: inline-size;
    container-name: db-reviews;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }
  .db-reviews__viewport::-webkit-scrollbar {
    height: 6px;
  }
  .db-reviews__viewport::-webkit-scrollbar-thumb {
    background: rgba(54, 154, 70, 0.28);
    border-radius: 3px;
  }
  .db-reviews__track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 14px;
  }
  .db-reviews__track .db-review-card {
    flex: 0 0 100cqi;
    min-width: 100cqi;
    max-width: 100cqi;
    scroll-snap-align: start;
    box-sizing: border-box;
  }
}
.db-review-card {
  background: #fff;
  border: 1px solid #eceaf8;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(20, 26, 33, 0.06);
  position: relative;
  overflow: hidden;
}
.db-review-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(140, 83, 255, 0.16) 0%, rgba(76, 217, 100, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.db-review-card:hover::before {
  opacity: 1;
}
.db-review-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.db-review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(135deg, #8C53FF 0%, #6C40C4 100%);
  flex-shrink: 0;
}
.db-review-card__avatar--p {
  background: linear-gradient(135deg, #8C53FF 0%, #FF4D6D 100%);
}
.db-review-card__avatar--g {
  background: linear-gradient(135deg, #4CD964 0%, #8C53FF 100%);
}
.db-review-card__avatar--r {
  background: linear-gradient(135deg, #FF4D6D 0%, #8C53FF 100%);
}
.db-review-card__name {
  font-weight: 800;
  color: #26252E;
}
.db-review-card__meta {
  font-size: 12px;
  color: #8f8da3;
  margin-top: 2px;
}
.db-review-card__stars {
  display: flex;
  gap: 4px;
  color: #8C53FF;
  margin: 2px 0 10px;
}
.db-review-card__quote {
  margin: 0;
  color: #3a3748;
  font-size: 14px;
  line-height: 1.6;
}

/* Отзывы участников программ: слайдер (1 карточка на мобильных, 2 на десктопе) */
.db-prog-reviews {
  width: 100%;
}
.db-prog-reviews__head {
  margin: 0 0 20px;
  max-width: 900px;
}
.db-prog-reviews__eyebrow {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 18px;
  background: rgba(140, 83, 255, 0.12);
  color: #6C40C4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.db-prog-reviews__title {
  margin: 12px 0 8px;
  font-size: 28px;
  line-height: 1.2;
  color: #26252E;
  font-weight: 800;
}
.db-prog-reviews__subtitle {
  margin: 0;
  color: #5d5a6b;
  font-size: 15px;
  line-height: 1.6;
}
.db-prog-reviews__slider-wrap {
  position: relative;
}
.db-prog-reviews__controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 12px;
}
.db-prog-reviews__viewport {
  margin: 0;
  container-type: inline-size;
  container-name: db-prog-reviews;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.db-prog-reviews__viewport::-webkit-scrollbar {
  height: 6px;
}
.db-prog-reviews__viewport::-webkit-scrollbar-thumb {
  background: rgba(140, 83, 255, 0.25);
  border-radius: 3px;
}
.db-prog-reviews__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 14px;
}
.db-prog-reviews__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #e0dcf0;
  background: #fff;
  color: #6C40C4;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(38, 37, 46, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.db-prog-reviews__btn:hover:not(:disabled) {
  background: rgba(140, 83, 255, 0.08);
  border-color: rgba(140, 83, 255, 0.35);
}
.db-prog-reviews__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.db-prog-reviews__btn:focus-visible {
  outline: 2px solid rgba(140, 83, 255, 0.5);
  outline-offset: 2px;
}

.db-prog-reviews__track .db-prog-review-card {
  flex: 0 0 100cqi;
  min-width: 100cqi;
  max-width: 100cqi;
  scroll-snap-align: start;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .db-prog-reviews__track .db-prog-review-card {
    flex: 0 0 calc(50cqi - 7px);
    min-width: calc(50cqi - 7px);
    max-width: calc(50cqi - 7px);
  }
}
.db-prog-review-card {
  background: #fff;
  border: 1px solid #eceaf8;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(20, 26, 33, 0.07);
  position: relative;
  overflow: hidden;
}
.db-prog-review-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(140, 83, 255, 0.12) 0%, rgba(76, 217, 100, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.db-prog-review-card:hover::before {
  opacity: 1;
}
.db-prog-review-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.db-prog-review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(135deg, #8C53FF 0%, #6C40C4 100%);
  flex-shrink: 0;
}
.db-prog-review-card__avatar--d {
  background: linear-gradient(135deg, #5AC8FA 0%, #8C53FF 100%);
}
.db-prog-review-card__avatar--s {
  background: linear-gradient(135deg, #FF4D6D 0%, #8C53FF 100%);
}
.db-prog-review-card__avatar--a {
  background: linear-gradient(135deg, #4CD964 0%, #369A46 100%);
}
.db-prog-review-card__avatar--n {
  background: linear-gradient(135deg, #FFB020 0%, #FF4D6D 100%);
}
.db-prog-review-card__avatar--k {
  background: linear-gradient(135deg, #8C53FF 0%, #4CD964 100%);
}
.db-prog-review-card__name {
  font-weight: 800;
  color: #26252E;
  font-size: 16px;
}
.db-prog-review-card__status {
  font-size: 12px;
  color: #8f8da3;
  margin-top: 2px;
  line-height: 1.35;
}
.db-prog-review-card__program {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eceaf8;
}
.db-prog-review-card__program-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a09eb5;
  margin-bottom: 4px;
}
.db-prog-review-card__program-link {
  font-weight: 800;
  font-size: 15px;
  color: #6C40C4;
  text-decoration: none;
  transition: color 0.2s ease;
}
.db-prog-review-card__program-link:hover {
  color: #8C53FF;
  text-decoration: underline;
}
.db-prog-review-card__results {
  margin-bottom: 10px;
}
.db-prog-review-card__results-title {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #369A46;
  margin-bottom: 6px;
}
.db-prog-review-card__results-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #3a3748;
}
.db-prog-review-card__stars {
  display: flex;
  gap: 4px;
  color: #8C53FF;
  margin: 0 0 10px;
}
.db-prog-review-card__quote {
  margin: 0;
  color: #3a3748;
  font-size: 14px;
  line-height: 1.65;
}
.db-prog-review-card__suggestion {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px dashed rgba(140, 83, 255, 0.35);
  background: linear-gradient(135deg, rgba(140, 83, 255, 0.06) 0%, rgba(76, 217, 100, 0.05) 100%);
}
.db-prog-review-card__suggestion-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #6C40C4;
  margin-bottom: 6px;
}
.db-prog-review-card__suggestion-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #4a4658;
}

@media (max-width: 991px) {
  .db-prog-reviews__title {
    font-size: 24px;
  }
}
.db-products {
  width: 100%;
  padding: 0;
}
.db-products__head {
  margin: 0 0 22px;
  max-width: 720px;
}
.db-products__eyebrow {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 18px;
  background: rgba(140, 83, 255, 0.12);
  color: #6C40C4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.db-products__title {
  margin: 12px 0 8px;
  font-size: 28px;
  line-height: 1.2;
  color: #26252E;
  font-weight: 800;
}
.db-products__subtitle {
  margin: 0;
  color: #5d5a6b;
  font-size: 15px;
  line-height: 1.6;
}
.db-products__grid {
  display: grid;
  grid-template-columns: repeat(var(--db-products-cols, 3), minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.db-products__footer {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.db-products__shop {
  max-width: 280px;
}

.db-product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eceaf8;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(20, 26, 33, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.db-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(20, 26, 33, 0.11);
}
.db-product-card__media {
  display: block;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, #f4f2fb 0%, #eceaf8 100%);
  overflow: hidden;
  position: relative;
}
.db-product-card__media img, .db-product-card__media .db-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.db-product-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 160px;
  background: linear-gradient(135deg, rgba(140, 83, 255, 0.2) 0%, rgba(76, 217, 100, 0.15) 100%);
}
.db-product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 18px 20px;
  gap: 10px;
}
.db-product-card__title {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
}
.db-product-card__title a {
  color: #26252E;
  text-decoration: none;
  transition: color 0.15s ease;
}
.db-product-card__title a:hover {
  color: #8C53FF;
}
.db-product-card__price {
  font-size: 15px;
  font-weight: 700;
  color: #369A46;
}
.db-product-card__price ins {
  text-decoration: none;
}
.db-product-card__price del {
  font-weight: 500;
  color: #9a97ac;
  font-size: 13px;
  margin-right: 6px;
}
.db-product-card__btn {
  margin-top: auto;
  max-width: none;
  width: 100%;
  align-self: stretch;
  text-align: center;
  padding: 12px 16px;
  font-size: 11px;
}

@media (max-width: 900px) {
  .db-products__grid {
    grid-template-columns: repeat(min(var(--db-products-cols, 3), 2), minmax(0, 1fr));
  }
  .db-products__title {
    font-size: 24px;
  }
}
@media (max-width: 560px) {
  .db-products__grid {
    grid-template-columns: 1fr;
  }
}
html.theme-dark .db-products__eyebrow {
  background: rgba(140, 83, 255, 0.22);
  color: #d5c2ff;
}
html.theme-dark .db-products__title {
  color: #e8e8f0;
}
html.theme-dark .db-products__subtitle {
  color: #b7b7c5;
}
html.theme-dark .db-product-card {
  background: #2a2b34;
  border-color: #3a3b45;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
}
html.theme-dark .db-product-card:hover {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
}
html.theme-dark .db-product-card__media {
  background: linear-gradient(145deg, #32333e 0%, #25262e 100%);
}
html.theme-dark .db-product-card__placeholder {
  background: linear-gradient(135deg, rgba(140, 83, 255, 0.35) 0%, rgba(76, 217, 100, 0.2) 100%);
}
html.theme-dark .db-product-card__title a {
  color: #e8e8f0;
}
html.theme-dark .db-product-card__title a:hover {
  color: #d3beff;
}
html.theme-dark .db-product-card__price {
  color: #b7f7c9;
}
html.theme-dark .db-product-card__price del {
  color: #8f90a3;
}

.db-shot-card {
  background: #fff;
  border: 1px solid #eceaf8;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(20, 26, 33, 0.07);
}
.db-shot-card__screen {
  min-height: 172px;
  padding: 16px 16px 14px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(ellipse 90% 70% at 92% -5%, rgba(140, 83, 255, 0.55) 0%, transparent 52%), radial-gradient(ellipse 75% 60% at 5% 105%, rgba(76, 217, 100, 0.35) 0%, transparent 48%), linear-gradient(158deg, #0c0e14 0%, #16122a 38%, #0f1724 72%, #12141c 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), inset 0 -12px 28px rgba(0, 0, 0, 0.35);
}
.db-shot-card__screen::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(118deg, transparent 42%, rgba(255, 255, 255, 0.055) 48%, transparent 54%);
  pointer-events: none;
  z-index: 1;
}
.db-shot-card__screen--calendar {
  background: radial-gradient(circle at 78% 18%, rgba(140, 83, 255, 0.5) 0%, transparent 42%), radial-gradient(circle at 12% 88%, rgba(76, 217, 100, 0.32) 0%, transparent 45%), linear-gradient(165deg, #120a22 0%, #1a1432 45%, #0a121c 100%);
}
.db-shot-card__screen--progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 18px;
  padding-right: 18px;
  background: radial-gradient(ellipse 80% 60% at 100% 50%, rgba(140, 83, 255, 0.45) 0%, transparent 50%), radial-gradient(ellipse 70% 55% at 0% 80%, rgba(76, 217, 100, 0.28) 0%, transparent 48%), linear-gradient(150deg, #0e1018 0%, #15182e 50%, #0c1218 100%);
}
.db-shot-card__screen--progress .db-ui-bars {
  position: relative;
  right: auto;
  bottom: auto;
}
.db-shot-card__screen--programs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 18px;
  background: radial-gradient(circle at 50% 0%, rgba(140, 83, 255, 0.4) 0%, transparent 38%), radial-gradient(circle at 30% 100%, rgba(76, 217, 100, 0.22) 0%, transparent 40%), linear-gradient(160deg, #0d0f16 0%, #181326 55%, #0e1620 100%);
}
.db-shot-card__screen--programs .db-ui-list {
  width: 100%;
  max-width: 210px;
}
.db-shot-card__screen--mail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  padding: 20px 22px;
  background: radial-gradient(ellipse 100% 80% at 50% 120%, rgba(76, 217, 100, 0.2) 0%, transparent 45%), radial-gradient(circle at 20% 30%, rgba(140, 83, 255, 0.35) 0%, transparent 35%), linear-gradient(155deg, #0f0d18 0%, #141c28 100%);
}
.db-shot-card__screen--mail .db-ui-textline {
  margin-top: 0;
}
.db-shot-card__content {
  padding: 14px;
}
.db-shot-card__content h3 {
  margin: 0 0 6px;
  font-size: 17px;
  color: #26252E;
}
.db-shot-card__content p {
  margin: 0;
  color: #5d5a6b;
  font-size: 14px;
  line-height: 1.5;
}

.db-ui-topline {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.db-ui-topline::before {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(145deg, #a88cff, #6C40C4);
  box-shadow: 16px 0 0 0 #5ee87a, 32px 0 0 0 rgba(180, 150, 255, 0.85);
  opacity: 0.95;
}
.db-ui-topline::after {
  content: "";
  flex: 1;
  min-width: 0;
  height: 11px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.1));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 2px 12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.db-ui-calendar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  position: relative;
  z-index: 2;
}
.db-ui-calendar span {
  display: block;
  height: 22px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.db-ui-calendar span.is-active {
  background: linear-gradient(135deg, #5ee87a 0%, #36c9d4 45%, #9b6dff 100%);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 22px rgba(76, 217, 100, 0.45), 0 0 36px rgba(140, 83, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.db-ui-ring {
  position: relative;
  z-index: 2;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 7px solid rgba(255, 255, 255, 0.1);
  border-top-color: #5ee87a;
  border-right-color: #a88cff;
  border-bottom-color: rgba(140, 83, 255, 0.45);
  border-left-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 28px rgba(76, 217, 100, 0.35), 0 0 40px rgba(140, 83, 255, 0.2), inset 0 0 24px rgba(140, 83, 255, 0.12);
}
.db-ui-ring::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.14) 0%, transparent 55%);
  pointer-events: none;
}

.db-ui-bars {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  z-index: 2;
}
.db-ui-bars span {
  width: 12px;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.db-ui-bars span:nth-child(1) {
  height: 28px;
}
.db-ui-bars span:nth-child(2) {
  height: 42px;
  background: linear-gradient(180deg, #c4a8ff 0%, #6C40C4 55%, #4a2a8c 100%);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 20px rgba(140, 83, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.db-ui-bars span:nth-child(3) {
  height: 54px;
  background: linear-gradient(180deg, #7af08f 0%, #369A46 100%);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 20px rgba(76, 217, 100, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.db-ui-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.db-ui-list span {
  display: block;
  height: 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.db-ui-list span:nth-child(1) {
  width: 100%;
}
.db-ui-list span:nth-child(2) {
  width: 88%;
  background: linear-gradient(90deg, rgba(94, 232, 122, 0.95) 0%, rgba(140, 83, 255, 0.88) 100%);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 18px rgba(76, 217, 100, 0.28);
}
.db-ui-list span:nth-child(3) {
  width: 68%;
}

.db-ui-envelope {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.06) 45%, rgba(140, 83, 255, 0.12) 100%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 0 24px rgba(140, 83, 255, 0.15);
}
.db-ui-envelope::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 50%;
  border-radius: 11px 11px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, transparent 100%);
  pointer-events: none;
}
.db-ui-envelope::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 14px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewY(-18deg);
  opacity: 0.85;
}

.db-ui-textline {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  width: 78%;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.28), rgba(140, 83, 255, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

@media (max-width: 900px) {
  .db-promo-screens {
    padding: 18px;
  }
  .db-promo-screens__title {
    font-size: 24px;
  }
  .db-promo-screens__grid {
    grid-template-columns: 1fr;
  }
}
.woocommerce-loop-product__title {
  color: #111;
}

.woocommerce span.onsale {
  min-height: auto;
  min-width: auto;
  top: 12px;
  left: 12px;
  right: auto;
  margin: 0;
  padding: 8px 12px 8px 16px;
  border-radius: 10px 10px 10px 0;
  background: linear-gradient(135deg, #8C53FF 0%, #FF4D6D 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(140, 83, 255, 0.35);
  z-index: 5;
}
.woocommerce span.onsale:before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
}
.woocommerce span.onsale:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  border-top: 8px solid #6c40c4;
  border-right: 8px solid transparent;
}

.woocommerce div.product .woocommerce-tabs .panel {
  padding: 28px 32px;
}

html.theme-dark .woocommerce-page .woocommerce-products-header,
html.theme-dark body.woocommerce .woocommerce-products-header {
  border-bottom-color: #3a3b45;
}
html.theme-dark .woocommerce-page .woocommerce-products-header .woocommerce-products-header__title,
html.theme-dark body.woocommerce .woocommerce-products-header .woocommerce-products-header__title {
  color: #e8e8f0;
}
html.theme-dark .woocommerce-page .woocommerce-products-header .woocommerce-result-count,
html.theme-dark body.woocommerce .woocommerce-products-header .woocommerce-result-count {
  color: #a0a0b0;
}
html.theme-dark .woocommerce-page .woocommerce-ordering select,
html.theme-dark body.woocommerce .woocommerce-ordering select {
  background: #25262e;
  border-color: #3a3b45;
  color: #e2e2ea;
}
html.theme-dark .woocommerce-page li.product,
html.theme-dark body.woocommerce li.product {
  background: #25262e;
  border-color: #3a3b45;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
html.theme-dark .woocommerce-page li.product:hover,
html.theme-dark body.woocommerce li.product:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
html.theme-dark .woocommerce-page li.product .woocommerce-loop-product__title,
html.theme-dark .woocommerce-page li.product .woocommerce-loop-category__title, html.theme-dark .woocommerce-page li.product h2, html.theme-dark .woocommerce-page li.product h3,
html.theme-dark body.woocommerce li.product .woocommerce-loop-product__title,
html.theme-dark body.woocommerce li.product .woocommerce-loop-category__title,
html.theme-dark body.woocommerce li.product h2,
html.theme-dark body.woocommerce li.product h3 {
  color: #e8e8f0;
}
html.theme-dark .woocommerce-page li.product .price,
html.theme-dark body.woocommerce li.product .price {
  color: #b8a0ff;
}
html.theme-dark .woocommerce-page .woocommerce-pagination,
html.theme-dark body.woocommerce .woocommerce-pagination {
  border-top-color: #3a3b45;
}
html.theme-dark .woocommerce-page .woocommerce-pagination a.page-numbers, html.theme-dark .woocommerce-page .woocommerce-pagination span.page-numbers,
html.theme-dark body.woocommerce .woocommerce-pagination a.page-numbers,
html.theme-dark body.woocommerce .woocommerce-pagination span.page-numbers {
  border-color: #3a3b45;
  color: #e2e2ea;
}
html.theme-dark .woocommerce-page .woocommerce-pagination a.page-numbers:hover,
html.theme-dark body.woocommerce .woocommerce-pagination a.page-numbers:hover {
  border-color: #8C53FF;
  background: rgba(140, 83, 255, 0.15);
}
html.theme-dark .woocommerce-page .woocommerce span.onsale,
html.theme-dark body.woocommerce .woocommerce span.onsale {
  background: linear-gradient(135deg, #9b6bff 0%, #ff5d7a 100%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}
html.theme-dark .woocommerce-page .woocommerce span.onsale:after,
html.theme-dark body.woocommerce .woocommerce span.onsale:after {
  border-top-color: #4f2f8f;
}
html.theme-dark .woocommerce-page,
html.theme-dark body.woocommerce {
  /* Single product — тёмная тема (галерея: см. html.theme-dark body.single-product.woocommerce …) */
}
html.theme-dark .woocommerce-page body.single-product div.product .summary .product_title,
html.theme-dark body.woocommerce body.single-product div.product .summary .product_title {
  color: #e8e8f0;
}
html.theme-dark .woocommerce-page body.single-product div.product .summary .price,
html.theme-dark body.woocommerce body.single-product div.product .summary .price {
  color: #b8a0ff;
}
html.theme-dark .woocommerce-page body.single-product div.product .summary,
html.theme-dark body.woocommerce body.single-product div.product .summary {
  background: linear-gradient(180deg, #25262e 0%, #22232b 100%);
  border-color: #3a3b45;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}
html.theme-dark .woocommerce-page body.single-product div.product .summary .price del,
html.theme-dark body.woocommerce body.single-product div.product .summary .price del {
  color: #8f90a3;
  opacity: 0.9;
}
html.theme-dark .woocommerce-page body.single-product div.product .summary .price ins,
html.theme-dark body.woocommerce body.single-product div.product .summary .price ins {
  color: #c6b1ff;
}
html.theme-dark .woocommerce-page body.single-product div.product .summary .woocommerce-product-details__short-description,
html.theme-dark body.woocommerce body.single-product div.product .summary .woocommerce-product-details__short-description {
  color: #b2b2c2;
  padding: 24px 28px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid #33343e;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
html.theme-dark .woocommerce-page body.single-product div.product .summary .woocommerce-product-details__short-description > *,
html.theme-dark body.woocommerce body.single-product div.product .summary .woocommerce-product-details__short-description > * {
  margin: 0;
}
html.theme-dark .woocommerce-page body.single-product div.product .summary .woocommerce-product-details__short-description ul, html.theme-dark .woocommerce-page body.single-product div.product .summary .woocommerce-product-details__short-description ol,
html.theme-dark body.woocommerce body.single-product div.product .summary .woocommerce-product-details__short-description ul,
html.theme-dark body.woocommerce body.single-product div.product .summary .woocommerce-product-details__short-description ol {
  padding-left: 1.25em;
}
html.theme-dark .woocommerce-page body.single-product div.product .summary .product_meta,
html.theme-dark body.woocommerce body.single-product div.product .summary .product_meta {
  color: #a8a8b8;
}
html.theme-dark .woocommerce-page body.single-product div.product .summary .product_meta a,
html.theme-dark body.woocommerce body.single-product div.product .summary .product_meta a {
  color: #d3beff;
}
html.theme-dark .woocommerce-page body.single-product div.product .summary .product_meta a:hover,
html.theme-dark body.woocommerce body.single-product div.product .summary .product_meta a:hover {
  color: #e3d4ff;
}
html.theme-dark .woocommerce-page body.single-product div.product .summary form.cart,
html.theme-dark body.woocommerce body.single-product div.product .summary form.cart {
  padding-top: 8px;
  border-top: 1px solid #33343e;
  margin-top: 10px;
}
html.theme-dark .woocommerce-page body.single-product div.product .summary .quantity input.qty,
html.theme-dark body.woocommerce body.single-product div.product .summary .quantity input.qty {
  background: #1a1b23;
  border-color: #3a3b45;
  color: #e2e2ea;
}
html.theme-dark .woocommerce-page body.single-product div.product .summary .single_add_to_cart_button,
html.theme-dark body.woocommerce body.single-product div.product .summary .single_add_to_cart_button {
  background: #8C53FF;
  border-bottom: 4px solid #5f38aa;
  color: #fff;
}
html.theme-dark .woocommerce-page body.single-product div.product .summary .single_add_to_cart_button:hover,
html.theme-dark body.woocommerce body.single-product div.product .summary .single_add_to_cart_button:hover {
  background: #7746D8;
}
html.theme-dark .woocommerce-page body.single-product div.product .cart .quantity input.qty,
html.theme-dark body.woocommerce body.single-product div.product .cart .quantity input.qty {
  background: #1a1b23;
  border-color: #3a3b45;
  color: #e2e2ea;
}
html.theme-dark .woocommerce-page body.single-product .woocommerce-tabs.wc-tabs-wrapper,
html.theme-dark body.woocommerce body.single-product .woocommerce-tabs.wc-tabs-wrapper {
  border-top-color: #3a3b45;
}
html.theme-dark .woocommerce-page body.single-product .woocommerce-tabs ul.tabs li a,
html.theme-dark body.woocommerce body.single-product .woocommerce-tabs ul.tabs li a {
  background: rgba(255, 255, 255, 0.06);
  color: #e2e2ea;
}
html.theme-dark .woocommerce-page body.single-product .woocommerce-tabs ul.tabs li.active a,
html.theme-dark .woocommerce-page body.single-product .woocommerce-tabs ul.tabs li a:hover,
html.theme-dark body.woocommerce body.single-product .woocommerce-tabs ul.tabs li.active a,
html.theme-dark body.woocommerce body.single-product .woocommerce-tabs ul.tabs li a:hover {
  background: #8C53FF;
  color: #fff;
}
html.theme-dark .woocommerce-page body.single-product .woocommerce-Tabs-panel h2,
html.theme-dark body.woocommerce body.single-product .woocommerce-Tabs-panel h2 {
  color: #e8e8f0;
}
html.theme-dark .woocommerce-page body.single-product .woocommerce-Tabs-panel p,
html.theme-dark .woocommerce-page body.single-product .woocommerce-Tabs-panel li,
html.theme-dark body.woocommerce body.single-product .woocommerce-Tabs-panel p,
html.theme-dark body.woocommerce body.single-product .woocommerce-Tabs-panel li {
  color: #a0a0b0;
}
html.theme-dark .woocommerce-page body.single-product .woocommerce-Tabs-panel table.woocommerce-product-attributes th,
html.theme-dark .woocommerce-page body.single-product .woocommerce-Tabs-panel table.woocommerce-product-attributes td,
html.theme-dark body.woocommerce body.single-product .woocommerce-Tabs-panel table.woocommerce-product-attributes th,
html.theme-dark body.woocommerce body.single-product .woocommerce-Tabs-panel table.woocommerce-product-attributes td {
  border-color: #3a3b45;
}
html.theme-dark .woocommerce-page body.single-product .woocommerce-Tabs-panel table.woocommerce-product-attributes th,
html.theme-dark body.woocommerce body.single-product .woocommerce-Tabs-panel table.woocommerce-product-attributes th {
  color: #e8e8f0;
}
html.theme-dark .woocommerce-page body.single-product .related.products h2,
html.theme-dark .woocommerce-page body.single-product .upsells.products h2,
html.theme-dark body.woocommerce body.single-product .related.products h2,
html.theme-dark body.woocommerce body.single-product .upsells.products h2 {
  color: #e8e8f0;
}
html.theme-dark .woocommerce-page body.single-product .related.products,
html.theme-dark .woocommerce-page body.single-product .upsells.products,
html.theme-dark body.woocommerce body.single-product .related.products,
html.theme-dark body.woocommerce body.single-product .upsells.products {
  border-top-color: #3a3b45;
}
html.theme-dark .woocommerce-page .db-promo-screens,
html.theme-dark body.woocommerce .db-promo-screens {
  background: linear-gradient(180deg, #25262e 0%, #22232b 100%);
  border-color: #3a3b45;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}
html.theme-dark .woocommerce-page .db-promo-screens__eyebrow,
html.theme-dark body.woocommerce .db-promo-screens__eyebrow {
  background: rgba(140, 83, 255, 0.22);
  color: #d5c2ff;
}
html.theme-dark .woocommerce-page .db-promo-screens__title,
html.theme-dark body.woocommerce .db-promo-screens__title {
  color: #e8e8f0;
}
html.theme-dark .woocommerce-page .db-promo-screens__subtitle,
html.theme-dark body.woocommerce .db-promo-screens__subtitle {
  color: #b7b7c5;
}
html.theme-dark .woocommerce-page .db-shot-card,
html.theme-dark body.woocommerce .db-shot-card {
  background: #2a2b34;
  border-color: #3a3b45;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}
html.theme-dark .woocommerce-page .db-shot-card__content h3,
html.theme-dark body.woocommerce .db-shot-card__content h3 {
  color: #f0eef9;
}
html.theme-dark .woocommerce-page .db-shot-card__content p,
html.theme-dark body.woocommerce .db-shot-card__content p {
  color: #c0bfcd;
}
html.theme-dark .woocommerce-page div.product .summary .product_title,
html.theme-dark body.woocommerce div.product .summary .product_title {
  color: #fff;
}
html.theme-dark .woocommerce-page .wc-block-components-address-card address .wc-block-components-address-card__address-section--secondary,
html.theme-dark body.woocommerce .wc-block-components-address-card address .wc-block-components-address-card__address-section--secondary {
  color: #fff;
}
html.theme-dark .woocommerce-page ul.products li.product, html.theme-dark .woocommerce-page .woocommerce-page ul.products li.product,
html.theme-dark body.woocommerce ul.products li.product,
html.theme-dark body.woocommerce .woocommerce-page ul.products li.product {
  padding: 20px;
}
html.theme-dark .woocommerce-page .woocommerce-Tabs-panel p, html.theme-dark .woocommerce-page .woocommerce-Tabs-panel li, html.theme-dark .woocommerce-page .woocommerce-Tabs-panel h2,
html.theme-dark body.woocommerce .woocommerce-Tabs-panel p,
html.theme-dark body.woocommerce .woocommerce-Tabs-panel li,
html.theme-dark body.woocommerce .woocommerce-Tabs-panel h2 {
  color: #fff;
}
html.theme-dark .woocommerce-page .editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name, html.theme-dark .woocommerce-page table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name,
html.theme-dark body.woocommerce .editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name,
html.theme-dark body.woocommerce table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
  color: #fff;
}
html.theme-dark .woocommerce-page .wc-block-components-button:not(.is-link) .wc-block-components-button__text,
html.theme-dark body.woocommerce .wc-block-components-button:not(.is-link) .wc-block-components-button__text {
  color: #fff;
}
html.theme-dark .woocommerce-page .product_meta .posted_in a,
html.theme-dark body.woocommerce .product_meta .posted_in a {
  color: #fff;
  text-decoration: underline;
}
html.theme-dark .woocommerce-page .wc-block-components-form .wc-block-components-text-input label, html.theme-dark .woocommerce-page .wc-block-components-text-input label,
html.theme-dark body.woocommerce .wc-block-components-form .wc-block-components-text-input label,
html.theme-dark body.woocommerce .wc-block-components-text-input label {
  color: #111;
}
html.theme-dark .woocommerce-page .wc-blocks-components-select .wc-blocks-components-select__label,
html.theme-dark body.woocommerce .wc-blocks-components-select .wc-blocks-components-select__label {
  color: #111;
}
html.theme-dark .woocommerce-page .wc-block-components-checkbox__label a,
html.theme-dark body.woocommerce .wc-block-components-checkbox__label a {
  color: #fff;
  text-decoration: underline;
}
html.theme-dark .woocommerce-page div.product .summary .woocommerce-product-details__short-description,
html.theme-dark body.woocommerce div.product .summary .woocommerce-product-details__short-description {
  background: #333;
  color: #fff;
}

.wc-block-components-button:not(.is-link) {
  text-align: center;
  display: block;
  padding: 15px 15px;
  text-decoration: none;
  background: #8C53FF;
  color: #fff;
  font-weight: 300;
  font-size: 12px;
  text-transform: uppercase;
  transition: all 0.2s 0.05s ease;
  border-radius: 25px;
  border-bottom: 4px solid #6C40C4;
  width: 100%;
  max-width: 250px;
  justify-content: center;
}
.wc-block-components-button:not(.is-link):hover {
  text-decoration: none;
  background: #7746D8;
}
.wc-block-components-button:not(.is-link):focus {
  background: #6C40C4;
}

#primary .product_type_simple {
  text-align: center;
  display: block;
  padding: 15px 15px;
  text-decoration: none;
  background: #8C53FF;
  color: #fff;
  font-weight: 300;
  font-size: 12px;
  text-transform: uppercase;
  transition: all 0.2s 0.05s ease;
  border-radius: 25px;
  border-bottom: 4px solid #6C40C4;
  width: 100%;
  max-width: 250px;
}
#primary .product_type_simple:hover {
  text-decoration: none;
  background: #7746D8;
}
#primary .product_type_simple:focus {
  background: #6C40C4;
}

.woocommerce-ordering {
  display: none;
}

.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
  width: 100%;
}

.archive_page.blog {
  padding: 30px 15px 0;
}

.woocommerce-page .single_page {
  padding: 30px 15px;
}

.page .single_page {
  padding: 30px 15px;
}

@media (max-width: 1024px) {
  .single .single_page {
    padding: 0 15px;
  }
}

.capability-template-default {
  padding: 77px 0 0;
}

.wp-block-product-new .wc-block-grid__products {
  flex-direction: row;
}

/* ========== Cart Page (DayBooster style) ========== */
body.woocommerce-cart .single_page {
  padding-top: 36px;
  padding-bottom: 40px;
}
body.woocommerce-cart .woocommerce .cart-empty,
body.woocommerce-cart .woocommerce .return-to-shop {
  background: #fff;
  border: 1px solid #eceaf8;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
}
body.woocommerce-cart table.shop_table {
  border: 1px solid #eceaf8;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(20, 26, 33, 0.08);
}
body.woocommerce-cart table.shop_table thead th {
  background: #f8f6ff;
  color: #26252E;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid #eceaf8;
  padding: 14px 12px;
}
body.woocommerce-cart table.shop_table tbody td {
  border-color: #f0eef9;
  padding: 14px 12px;
  color: #3a3748;
}
body.woocommerce-cart table.shop_table a {
  color: #6c40c4;
}
body.woocommerce-cart table.shop_table a:hover {
  color: #8C53FF;
  text-decoration: none;
}
body.woocommerce-cart .quantity .qty {
  border: 1px solid #d9d4ef;
  border-radius: 10px;
  height: 40px;
  padding: 0 10px;
}
body.woocommerce-cart .coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
body.woocommerce-cart .coupon #coupon_code {
  min-width: 220px;
  height: 42px;
  border: 1px solid #d9d4ef;
  border-radius: 12px;
  padding: 0 12px;
  background: #fff;
}
body.woocommerce-cart .coupon .button {
  border-radius: 22px !important;
  border: 0 !important;
  background: #5AC8FA !important;
  color: #fff !important;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  padding: 12px 18px !important;
}
body.woocommerce-cart .coupon .button:hover {
  background: #4ba6d0 !important;
}
body.woocommerce-cart .actions .button,
body.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  border-radius: 24px !important;
  border: 0 !important;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 18px !important;
  box-shadow: none !important;
}
body.woocommerce-cart .actions .button {
  background: #8C53FF !important;
  color: #fff !important;
}
body.woocommerce-cart .actions .button:hover {
  background: #7746D8 !important;
}
body.woocommerce-cart .woocommerce a.button,
body.woocommerce-cart .woocommerce button.button,
body.woocommerce-cart .woocommerce input.button,
body.woocommerce-cart .woocommerce .button {
  border-radius: 24px !important;
  border: 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 14px 18px !important;
}
body.woocommerce-cart .woocommerce .wc-proceed-to-checkout a.checkout-button.button.alt,
body.woocommerce-cart .woocommerce .wc-proceed-to-checkout .checkout-button {
  background: #4CD964 !important;
  color: #fff !important;
  border-bottom: 4px solid #369A46 !important;
}
body.woocommerce-cart .woocommerce .wc-proceed-to-checkout a.checkout-button.button.alt:hover,
body.woocommerce-cart .woocommerce .wc-proceed-to-checkout .checkout-button:hover {
  background: #44C45A !important;
}
body.woocommerce-cart .cart-collaterals {
  margin-top: 24px;
}
body.woocommerce-cart .cart-collaterals .cart_totals {
  background: #fff;
  border: 1px solid #eceaf8;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(20, 26, 33, 0.08);
}
body.woocommerce-cart .cart-collaterals .cart_totals h2 {
  margin: 0 0 14px;
  font-size: 22px;
  color: #26252E;
}
body.woocommerce-cart .cart-collaterals .cart_totals table {
  border: 0;
}
body.woocommerce-cart .cart-collaterals .cart_totals table th, body.woocommerce-cart .cart-collaterals .cart_totals table td {
  border-color: #f0eef9;
  padding: 12px 8px;
}
body.woocommerce-cart .cart-collaterals .cart_totals .checkout-button {
  background: #4CD964 !important;
  color: #fff !important;
  border-bottom: 4px solid #369A46 !important;
}
body.woocommerce-cart .cart-collaterals .cart_totals .checkout-button:hover {
  background: #44C45A !important;
}
body.woocommerce-cart .cross-sells,
body.woocommerce-cart .wp-block-product-new {
  margin-top: 28px;
  margin-bottom: 28px;
  padding: 22px;
  border: 1px solid #eceaf8;
  border-radius: 16px;
  background: #fff;
}
body.woocommerce-cart .cross-sells h2, body.woocommerce-cart .cross-sells h3,
body.woocommerce-cart .wp-block-product-new h2,
body.woocommerce-cart .wp-block-product-new h3 {
  margin: 0 0 14px;
  color: #26252E;
}
body.woocommerce-cart .woocommerce ul.products li.product .onsale,
body.woocommerce-cart .wp-block-product-new .wc-block-grid__product .wc-block-grid__product-onsale,
body.woocommerce-cart .wp-block-product-new .wc-block-grid__product .onsale {
  min-height: auto !important;
  min-width: auto !important;
  margin: 0 !important;
  padding: 8px 12px 8px 16px !important;
  border-radius: 10px 10px 10px 0 !important;
  background: linear-gradient(135deg, #8C53FF 0%, #FF4D6D 100%) !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  box-shadow: 0 6px 14px rgba(140, 83, 255, 0.35) !important;
}
@media (max-width: 640px) {
  body.woocommerce-cart .single_page {
    padding-top: 22px;
    padding-bottom: 30px;
  }
  body.woocommerce-cart .wc-block-cart {
    overflow-x: hidden;
  }
  body.woocommerce-cart table.shop_table {
    width: 100%;
    border-radius: 16px;
  }
  body.woocommerce-cart table.shop_table thead {
    display: none;
  }
  body.woocommerce-cart table.shop_table tr {
    display: block;
    border-bottom: 1px solid #f0eef9;
    padding: 0;
  }
  body.woocommerce-cart table.shop_table tr:last-child {
    border-bottom: none;
  }
  body.woocommerce-cart table.shop_table td {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    padding: 10px 12px;
    box-sizing: border-box;
    border: 0;
  }
  body.woocommerce-cart table.shop_table td::before {
    content: attr(data-title);
    flex: 0 0 52%;
    font-weight: 600;
    color: #26252E;
    opacity: 0.9;
  }
  body.woocommerce-cart table.shop_table td.product-remove {
    justify-content: flex-end;
  }
  body.woocommerce-cart table.shop_table td.product-remove::before {
    display: none;
  }
  body.woocommerce-cart table.shop_table .product-thumbnail img {
    max-width: 70px;
    height: auto;
  }
  body.woocommerce-cart table.shop_table .quantity .qty {
    width: 60px;
    height: 38px;
    padding: 0 8px;
  }
  body.woocommerce-cart table.shop_table a.remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    border: 1px solid #eceaf8;
    color: #7a1f1f;
    background: rgba(255, 241, 241, 0.8);
    text-decoration: none;
    font-weight: 700;
  }
  body.woocommerce-cart table.shop_table a.remove:hover {
    border-color: #ffcaca;
    background: rgb(255, 241, 241);
  }
  body.woocommerce-cart table.wc-block-cart-items {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
  }
  body.woocommerce-cart table.wc-block-cart-items thead {
    display: none;
  }
  body.woocommerce-cart table.wc-block-cart-items th, body.woocommerce-cart table.wc-block-cart-items td {
    padding: 12px 8px;
    border: 0;
  }
  body.woocommerce-cart table.wc-block-cart-items td {
    vertical-align: top;
  }
  body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-item__image {
    width: 84px;
  }
  body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-item__image img {
    max-width: 70px;
    height: auto;
    display: block;
  }
  body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-item__product {
    min-width: 0;
  }
  body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-item__product .wc-block-components-product-name {
    display: block;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-item__prices {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-item__quantity {
    white-space: normal;
    max-width: 120px;
  }
  body.woocommerce-cart table.wc-block-cart-items .wc-block-components-quantity-selector__input {
    width: 56px;
    max-width: 100%;
  }
  body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-item__remove-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    border: 1px solid #eceaf8;
    background: rgba(255, 241, 241, 0.8);
    color: #7a1f1f;
    padding: 0;
  }
  body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-item__remove-link:hover {
    border-color: #ffcaca;
    background: rgb(255, 241, 241);
  }
  body.woocommerce-cart .cart-collaterals {
    margin-top: 18px;
  }
  body.woocommerce-cart .coupon {
    flex-direction: column;
  }
  body.woocommerce-cart .coupon #coupon_code {
    min-width: unset;
    width: 100%;
  }
  body.woocommerce-cart .coupon .button {
    width: 100%;
    max-width: none;
  }
  body.woocommerce-cart .cross-sells,
  body.woocommerce-cart .wp-block-product-new {
    padding: 18px;
    margin-top: 18px;
    margin-bottom: 18px;
  }
}

/* ========== Checkout: ссылка на публичную оферту ========== */
body.woocommerce-checkout .single_page {
  padding-top: 36px;
  padding-bottom: 40px;
}
body.woocommerce-checkout .db-checkout-offer-link {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.45;
  color: #3a3748;
}
body.woocommerce-checkout .db-checkout-offer-link a {
  color: #6c40c4;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
body.woocommerce-checkout .db-checkout-offer-link a:hover {
  color: #8C53FF;
}
body.woocommerce-checkout .wc-block-checkout .db-checkout-offer-link {
  margin-left: auto;
  margin-right: auto;
  padding: 0 4px;
  max-width: 640px;
}

/* Block cart compatibility */
.wc-block-cart .wc-block-cart-items,
.wc-block-cart .wc-block-components-totals-wrapper {
  border: 1px solid #eceaf8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(20, 26, 33, 0.08);
}
.wc-block-cart .wc-block-components-text-input input,
.wc-block-cart .wc-block-components-form .wc-block-components-text-input input {
  border-radius: 10px;
  border: 1px solid #d9d4ef;
}

html.theme-dark body.woocommerce-cart .woocommerce .cart-empty,
html.theme-dark body.woocommerce-cart .woocommerce .return-to-shop,
html.theme-dark body.woocommerce-cart table.shop_table,
html.theme-dark body.woocommerce-cart .cart-collaterals .cart_totals,
html.theme-dark body.woocommerce-cart .cross-sells,
html.theme-dark body.woocommerce-cart .wp-block-product-new {
  background: #25262e;
  border-color: #3a3b45;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  color: #e2e2ea;
}
html.theme-dark body.woocommerce-cart table.shop_table thead th {
  background: #2d2e38;
  border-bottom-color: #3a3b45;
  color: #e8e8f0;
}
html.theme-dark body.woocommerce-cart table.shop_table tbody td {
  border-color: #33343e;
  color: #d5d5de;
}
html.theme-dark body.woocommerce-cart table.shop_table a {
  color: #c9adff;
}
html.theme-dark body.woocommerce-cart .coupon #coupon_code,
html.theme-dark body.woocommerce-cart .quantity .qty {
  background: #1a1b23;
  border-color: #3a3b45;
  color: #e2e2ea;
}
html.theme-dark body.woocommerce-cart .cart-collaterals .cart_totals h2,
html.theme-dark body.woocommerce-cart .cross-sells h2,
html.theme-dark body.woocommerce-cart .cross-sells h3,
html.theme-dark body.woocommerce-cart .wp-block-product-new h2,
html.theme-dark body.woocommerce-cart .wp-block-product-new h3 {
  color: #e8e8f0;
}
html.theme-dark body.woocommerce-checkout .db-checkout-offer-link {
  color: #c9c5df;
}
html.theme-dark body.woocommerce-checkout .db-checkout-offer-link a {
  color: rgb(154.0315789474, 125.3473684211, 188.4526315789);
}
html.theme-dark body.woocommerce-checkout .db-checkout-offer-link a:hover {
  color: rgb(180.2771929825, 159.049122807, 205.750877193);
}
html.theme-dark .wc-block-cart .wc-block-cart-items,
html.theme-dark .wc-block-cart .wc-block-components-totals-wrapper {
  background: #25262e;
  border-color: #3a3b45;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}
html.theme-dark .wc-block-cart .wc-block-components-text-input input,
html.theme-dark .wc-block-cart .wc-block-components-form .wc-block-components-text-input input {
  background: #1a1b23;
  border-color: #3a3b45;
  color: #e2e2ea;
}
@media (max-width: 640px) {
  html.theme-dark .wc-block-cart table.shop_table td::before {
    color: #e8e8f0;
    opacity: 0.9;
  }
  html.theme-dark .wc-block-cart table.shop_table tr {
    border-bottom-color: #33343e;
  }
  html.theme-dark .wc-block-cart table.shop_table a.remove {
    border-color: #3a3b45;
    background: rgba(255, 212, 212, 0.08);
    color: #ffd4d4;
  }
  html.theme-dark .wc-block-cart table.shop_table a.remove:hover {
    border-color: #7a3838;
    background: rgba(255, 212, 212, 0.12);
  }
  html.theme-dark .wc-block-cart table.wc-block-cart-items td, html.theme-dark .wc-block-cart table.wc-block-cart-items th {
    color: #e2e2ea;
  }
  html.theme-dark .wc-block-cart table.wc-block-cart-items .wc-block-components-product-name {
    color: #e8e8f0;
  }
  html.theme-dark .wc-block-cart table.wc-block-cart-items .wc-block-cart-item__remove-link {
    border-color: #3a3b45;
    background: rgba(255, 212, 212, 0.08);
    color: #ffd4d4;
  }
  html.theme-dark .wc-block-cart table.wc-block-cart-items .wc-block-cart-item__remove-link:hover {
    border-color: #7a3838;
    background: rgba(255, 212, 212, 0.12);
  }
}
html.theme-dark .cabinet_settings .input_hint {
  line-height: 23px;
}
html.theme-dark .cabinet_settings .input_hint a {
  color: #fff;
}
html.theme-dark .cabinet_settings .input_hint a:hover {
  text-decoration: none;
}
html.theme-dark .woocommerce a.added_to_cart {
  color: #fff;
}

.wp-block-product-new .wc-block-grid__products {
  padding: 0;
}

body.single-product div.product .summary {
  position: static;
}

.wc-block-components-totals-wrapper {
  padding: 16px;
}

.wc-block-components-totals-wrapper.slot-wrapper > * > * {
  padding: 16px;
}

@media (max-width: 480px) {
  body.single-product div.product .summary .price {
    flex-direction: column;
  }
  .wc-block-components-totals-wrapper {
    padding: 16px;
  }
  .is-medium table.wc-block-cart-items .wc-block-cart-items__row, .is-mobile table.wc-block-cart-items .wc-block-cart-items__row, .is-small table.wc-block-cart-items .wc-block-cart-items__row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .wc-block-cart-item__total-price-and-sale-badge-wrapper {
    align-items: flex-start;
  }
  .is-medium table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product, .is-mobile table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product, .is-small table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product {
    padding: 10px;
  }
}
.wc-block-components-order-summary .wc-block-components-order-summary-item {
  flex-direction: column;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__description {
  padding: 0;
}

/* Create page: labels + jQuery DateTimePicker (xdsoft) in Daybooster UI */
.questions_form #questions_form .create_step_field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.questions_form #questions_form .create_step_field__label {
  font-size: 13px;
  font-weight: 600;
  color: #6b6978;
  letter-spacing: 0.02em;
}
.questions_form #questions_form .create_step_field--date {
  margin: 0;
}
.questions_form #questions_form .step_answers.create_step_field {
  gap: 10px;
}

.xdsoft_datetimepicker.db-create-datetimepicker {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif !important;
  border: 1px solid #e4e2ff !important;
  border-radius: 18px !important;
  box-shadow: 0 22px 55px rgba(18, 23, 38, 0.16) !important;
  padding: 14px 16px 16px !important;
  background: #fff !important;
  color: #26252e !important;
  z-index: 100100 !important;
  box-sizing: border-box !important;
}
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_copyright {
  display: none !important;
}
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_datepicker,
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_timepicker {
  border-radius: 14px;
}
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_datepicker {
  width: 252px;
  padding-right: 4px;
}
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_timepicker {
  width: 86px;
}
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_monthpicker {
  margin: 0 0 10px;
  padding: 4px 2px 8px;
  border-bottom: 1px solid #f0eefc;
}
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_label {
  font-weight: 600 !important;
  font-size: 13px !important;
  color: #26252e !important;
  background-color: transparent !important;
}
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_label > span {
  border-radius: 8px;
  padding: 2px 6px;
  transition: background 0.15s ease, color 0.15s ease;
}
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_label:hover > span {
  background: rgba(140, 83, 255, 0.14) !important;
  color: #7746d8 !important;
}
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_prev,
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_next,
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_today_button {
  border-radius: 10px !important;
  transition: background 0.15s ease, opacity 0.15s ease !important;
}
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_prev:hover,
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_next:hover,
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_today_button:hover {
  background: rgba(140, 83, 255, 0.14) !important;
  opacity: 1 !important;
}
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_calendar {
  margin-top: 4px;
}
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_calendar table {
  border-collapse: separate !important;
  border-spacing: 3px !important;
}
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_calendar th {
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #6b6978 !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none !important;
  background: transparent !important;
}
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_calendar td {
  border: none !important;
  background: transparent !important;
  font-size: 13px !important;
  vertical-align: middle !important;
}
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_calendar td > div {
  border-radius: 10px !important;
  padding: 6px 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.12s ease, color 0.12s ease !important;
}
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_calendar td.xdsoft_today > div {
  font-weight: 700 !important;
  color: #8c53ff !important;
  box-shadow: inset 0 0 0 1px rgba(140, 83, 255, 0.35) !important;
}
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_calendar td.xdsoft_default {
  background: transparent !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_calendar td.xdsoft_current > div,
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_calendar td.xdsoft_default > div {
  background: #8c53ff !important;
  color: #fff !important;
  font-weight: 600 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_calendar td:hover > div,
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  background: rgba(140, 83, 255, 0.14) !important;
  color: #26252e !important;
}
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_calendar td.xdsoft_current:hover > div {
  background: #7a46e8 !important;
  color: #fff !important;
}
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_calendar td.xdsoft_other_month > div,
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_calendar td.xdsoft_disabled > div {
  opacity: 0.35 !important;
}
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_timepicker .xdsoft_time_box {
  border: 1px solid #eceaf8 !important;
  border-radius: 12px !important;
  background: #faf9ff !important;
  margin: 4px 0 !important;
}
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div {
  font-size: 13px !important;
  border-radius: 8px !important;
  margin: 2px 4px !important;
}
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  background: #8c53ff !important;
  color: #fff !important;
  font-weight: 600 !important;
}
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_scrollbar > .xdsoft_scroller {
  background: rgba(140, 83, 255, 0.45) !important;
  border-radius: 4px !important;
}
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_scrollbar {
  background: #ede9fb !important;
  border-radius: 6px !important;
}
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_select {
  border-radius: 12px !important;
  border: 1px solid #e4e2ff !important;
  box-shadow: 0 12px 28px rgba(18, 23, 38, 0.12) !important;
}
.xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current {
  background: rgba(140, 83, 255, 0.14) !important;
  color: #6c40c4 !important;
}

html.theme-dark .questions_form #questions_form .create_step_field__label {
  color: #a0a0b0;
}
html.theme-dark .xdsoft_datetimepicker.db-create-datetimepicker {
  background: #2a2b35 !important;
  border-color: #3a3b45 !important;
  color: #e8e8f0 !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45) !important;
}
html.theme-dark .xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_monthpicker {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
html.theme-dark .xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_label {
  color: #e8e8f0 !important;
}
html.theme-dark .xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_label > .xdsoft_select {
  background: #2a2b35 !important;
  border-color: #3a3b45 !important;
}
html.theme-dark .xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option {
  color: #e8e8f0 !important;
}
html.theme-dark .xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover {
  background: rgba(140, 83, 255, 0.35) !important;
  color: #fff !important;
}
html.theme-dark .xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current {
  background: rgba(140, 83, 255, 0.22) !important;
  color: #d4c4ff !important;
  box-shadow: none !important;
}
html.theme-dark .xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_label:hover > span {
  background: rgba(140, 83, 255, 0.22) !important;
  color: #d4c4ff !important;
}
html.theme-dark .xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_calendar th {
  color: #9a98ac !important;
}
html.theme-dark .xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_calendar td.xdsoft_today > div {
  color: #c4b0ff !important;
  box-shadow: inset 0 0 0 1px rgba(140, 83, 255, 0.5) !important;
}
html.theme-dark .xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_calendar td:hover > div,
html.theme-dark .xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  background: rgba(140, 83, 255, 0.2) !important;
  color: #f2f0ff !important;
}
html.theme-dark .xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_timepicker .xdsoft_time_box {
  border-color: #3a3b45 !important;
  background: #1f2028 !important;
}
html.theme-dark .xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_scrollbar {
  background: #1a1b23 !important;
}
html.theme-dark .xdsoft_datetimepicker.db-create-datetimepicker .xdsoft_select {
  background: #2a2b35 !important;
  border-color: #3a3b45 !important;
}

/*# sourceMappingURL=main.css.map*/