@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500;600&display=swap");
:root {
  --theme: #e73049;
  --dark: rgb(227.1623376623, 26.3376623377, 53.7727272727);
  --light: rgb(233.6493506494, 70.8506493506, 93.0909090909);
  --v-light: rgb(246.8961038961, 185.1038961039, 193.5454545455);
  --focus: rgba(231, 48, 73, 0.3);
  --opacity: rgba(231, 48, 73, 0.1);
  --v-opacity: rgba(231, 48, 73, 0.05);
  --second: #e7c530;
  --second-dark: rgb(227.1623376623, 189.8506493506, 26.3376623377);
  --second-light: rgb(233.6493506494, 203.4025974026, 70.8506493506);
  --second-v-light: rgb(246.8961038961, 235.4155844156, 185.1038961039);
  --second-focus: rgba(231, 197, 48, 0.3);
  --second-opacity: rgba(231, 197, 48, 0.1);
  --second-v-opacity: rgba(231, 197, 48, 0.05);
  --font: Gilroy, sans-serif;
  --mono: Roboto Mono, monospace;
  --text: #020918;
  --text-op: #fff;
  --text-gray: rgba(7, 1, 56, 0.6);
  --border: rgba(7, 18, 119, 0.06);
  --shadow-s: 0 0.66rem 2rem rgba(0,0,0,0.07);
  --shadow-m: 0 1rem 3rem rgba(0,0,0,0.07);
  --shadow-l: 0 1.5rem 4.5rem rgba(0,0,0,0.07);
  --shadow-mc: 0 4px 8px rgba(0,0,0,0.07);
  --fz: 1.5rem;
  --small: calc(var(--fz) * 0.9);
  --v-small: calc(var(--fz) * 0.8);
  --bg: #fff;
  --bg-op: rgba(255,255,255,0.6);
  --gray-bg: rgba(32, 41, 119, 0.05);
  --admin-bar: 0px;
  --container-padding: 18rem;
  --tiles: 4;
  --tiles-large: 2;
  --tiles-height: 25rem;
  --sidebar: 30rem;
  --small-popup: 40rem;
  --popup: 50rem;
  --catalog: 4;
  --top-header: 8rem;
  --bottom-header: 6rem;
  --header-bar: 3rem;
  --mobile-header: 6rem;
  --header: calc(var(--top-header) + var(--bottom-header));
  --padding-lg: 4.8rem;
  --padding-bg: 3.6rem;
  --padding-md: 2.8rem;
  --padding: 2.4rem;
  --padding-nm: 1.8rem;
  --padding-sm: 1.2rem;
  --section-padding: 6rem;
  --field-large: 5.4rem;
  --field-big: 5rem;
  --field: 4.5rem;
  --field-medium: 3.8rem;
  --field-small: 3rem;
  --field-mini: 2.8rem;
  --time-input: 7rem;
  --date-input: 12rem;
  --checkbox: 1.8rem;
  --rad-lg: 1.7rem;
  --rad-bg: 1.4rem;
  --rad-md: 1.1rem;
  --rad: 0.7rem;
  --rad-sm: 0.3rem;
  --red: #ff1515;
  --red-dark: #e10000;
  --red-light: #ff4848;
  --red-focus: rgba(255, 21, 21, 0.3);
  --red-opacity: rgba(255, 21, 21, 0.1);
  --red-v-opacity: rgba(255, 21, 21, 0.05);
  --green: #2DAF53;
  --green-dark: rgb(34.5681818182, 134.4318181818, 63.7590909091);
  --green-light: rgb(64.8863636364, 206.1136363636, 106.1681818182);
  --green-focus: rgba(45, 175, 83, 0.3);
  --green-opacity: rgba(45, 175, 83, 0.1);
  --green-v-opacity: rgba(45, 175, 83, 0.05);
  --blue: #1869ff;
  --blue-dark: rgb(0, 79.9480519481, 228);
  --blue-light: rgb(75, 138.1168831169, 255);
  --blue-focus: rgba(24, 105, 255, 0.3);
  --blue-opacity: rgba(24, 105, 255, 0.1);
  --blue-v-opacity: rgba(24, 105, 255, 0.05);
  --orange: #ffae00;
  --orange-dark: rgb(204, 139.2, 0);
  --orange-light: rgb(255, 190.2, 51);
  --orange-focus: rgba(255, 174, 0, 0.3);
  --orange-opacity: rgba(255, 174, 0, 0.1);
  --orange-v-opacity: rgba(255, 174, 0, 0.05);
  --h1: 3rem;
  --h2: 2.8rem;
  --h3: 2.4rem;
  --h4: 2.2rem;
  --h5: 2rem;
  --h6: 1.8rem;
  --inputs-line: 2;
  --scroll_bar: 12px;
  --notifications: 42rem;
}

.dark {
  --bg: #272c3c;
  --text: #fff;
  --text-op: #202f51;
  --text-gray: rgba(255, 255, 255, 0.6);
  --border: rgba(255, 255, 255, 0.08);
  --gray-bg: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.red-theme {
  --theme: var(--red);
  --dark: var(--red-dark);
  --light: var(--red-light);
  --focus: var(--red-focus);
  --opacity: var(--red-opacity);
  --v-opacity: var(--red-v-opacity);
}

.green-theme {
  --theme: var(--green);
  --dark: var(--green-dark);
  --light: var(--green-light);
  --focus: var(--green-focus);
  --opacity: var(--green-opacity);
  --v-opacity: var(--green-v-opacity);
}

.orange-theme {
  --theme: var(--orange);
  --dark: var(--orange-dark);
  --light: var(--orange-light);
  --focus: var(--orange-focus);
  --opacity: var(--orange-opacity);
  --v-opacity: var(--orange-v-opacity);
}

.blue-theme {
  --theme: var(--blue);
  --dark: var(--blue-dark);
  --light: var(--blue-light);
  --focus: var(--blue-focus);
  --opacity: var(--blue-opacity);
  --v-opacity: var(--blue-v-opacity);
}

@media (max-width: 767px) {
  :root {
    --container-padding: 2.5rem;
    --catalog: 2;
    --tiles: 1;
    --tiles-large: 1;
    --tiles-height: 20rem;
    --scroll_bar: 8px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    --container: 90rem;
    --catalog: 2;
    --tiles: 3;
    --tiles-large: 2;
    --tiles-height: 25rem;
  }
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.eot");
  src: local("Gilroy Regular"), local("Gilroy-Regular"), url("../fonts/Gilroy-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff"), url("../fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.eot");
  src: local("Gilroy Bold"), local("Gilroy-Bold"), url("../fonts/Gilroy-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy-Bold.woff") format("woff"), url("../fonts/Gilroy-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Black.eot");
  src: local("Gilroy Black"), local("Gilroy-Black"), url("../fonts/Gilroy-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Black.woff2") format("woff2"), url("../fonts/Gilroy-Black.woff") format("woff"), url("../fonts/Gilroy-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Light.eot");
  src: local("Gilroy Light"), local("Gilroy-Light"), url("../fonts/Gilroy-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Light.woff2") format("woff2"), url("../fonts/Gilroy-Light.woff") format("woff"), url("../fonts/Gilroy-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Semibold.eot");
  src: local("Gilroy Semibold"), local("Gilroy-Semibold"), url("../fonts/Gilroy-Semibold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Semibold.woff2") format("woff2"), url("../fonts/Gilroy-Semibold.woff") format("woff"), url("../fonts/Gilroy-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.eot");
  src: local("Gilroy Medium"), local("Gilroy-Medium"), url("../fonts/Gilroy-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff"), url("../fonts/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-UltraLight.eot");
  src: local("Gilroy UltraLight"), local("Gilroy-UltraLight"), url("../fonts/Gilroy-UltraLight.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-UltraLight.woff2") format("woff2"), url("../fonts/Gilroy-UltraLight.woff") format("woff"), url("../fonts/Gilroy-UltraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Extrabold.eot");
  src: local("Gilroy Extrabold"), local("Gilroy-Extrabold"), url("../fonts/Gilroy-Extrabold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Extrabold.woff2") format("woff2"), url("../fonts/Gilroy-Extrabold.woff") format("woff"), url("../fonts/Gilroy-Extrabold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Heavy.eot");
  src: local("Gilroy Heavy"), local("Gilroy-Heavy"), url("../fonts/Gilroy-Heavy.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Heavy.woff2") format("woff2"), url("../fonts/Gilroy-Heavy.woff") format("woff"), url("../fonts/Gilroy-Heavy.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Thin.eot");
  src: local("Gilroy Thin"), local("Gilroy-Thin"), url("../fonts/Gilroy-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Thin.woff2") format("woff2"), url("../fonts/Gilroy-Thin.woff") format("woff"), url("../fonts/Gilroy-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
html {
  font-size: 0.65vw;
  background: var(--bg);
}

@keyframes loading {
  from {
    transform: none;
  }
  to {
    transform: rotate(360deg);
  }
}
.loading-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--bg);
  z-index: 24;
}
.loading-layer .spinner-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-layer .spinner-wrapper:before {
  content: "";
  width: 8rem;
  height: 8rem;
  border: 4px solid var(--opacity);
  border-radius: 100%;
  border-bottom: 4px solid var(--theme);
  animation: loading 0.7s infinite linear;
}

::-webkit-scrollbar {
  width: var(--scroll_bar);
  height: var(--scroll_bar);
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--border);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 1rem;
}

body {
  font-size: var(--fz);
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
  margin: 0 !important;
  min-height: calc(100vh - var(--admin-bar));
  display: flex;
  flex-direction: column;
  color: var(--text);
  -webkit-tap-highlight-color: transparent;
}
body .site-branding {
  display: flex;
  flex-direction: column;
}
body .site-branding a {
  display: flex;
  flex-direction: column;
}
body .site-branding .site-name {
  color: var(--text) !important;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}
body .site-branding .site-name span {
  color: var(--theme);
}
body .site-branding .description {
  font-size: var(--small);
  font-weight: 500;
  color: var(--text-gray);
}
body .container {
  width: 100%;
  padding: 0 var(--container-padding);
}
body .inline-breadcrumbs {
  height: var(--section-padding);
  display: flex;
  align-items: center;
}
body #breadcrumbs {
  font-size: var(--small);
}
body, body button, body input, body textarea {
  font-family: var(--font);
}
body .lg-text {
  font-size: calc(var(--fz) * 1.1);
}
body .sm-text {
  font-size: var(--small);
}
body hr {
  background: var(--border);
  margin: 0;
}
body a, body button, body input, body textarea {
  outline: none !important;
}
body.admin-bar {
  --admin-bar: 32px;
}
body a,
body a:visited,
body .link {
  color: var(--theme);
  text-decoration: none;
  transition: 0.2s;
  cursor: pointer;
}
body a.underline,
body a:visited.underline,
body .link.underline {
  border-bottom: 1px dashed var(--focus);
}
body a.focus:focus,
body a:visited.focus:focus,
body .link.focus:focus {
  border-radius: var(--rad-sm);
  box-shadow: 0 0 0 4px var(--focus);
}
body a.text-color,
body a:visited.text-color,
body .link.text-color {
  color: var(--text);
}
body .link-btn,
body a.link-btn,
body a:visited.link-btn {
  cursor: pointer;
  transition: 0.2s;
  color: var(--theme);
  font-weight: 500;
  width: fit-content;
  position: relative;
}
body .link-btn:not(.prevent-focus):focus,
body a.link-btn:not(.prevent-focus):focus,
body a:visited.link-btn:not(.prevent-focus):focus {
  border-radius: var(--rad-sm);
  box-shadow: 0 0 0 4px var(--focus);
}
body .link-btn:hover,
body a.link-btn:hover,
body a:visited.link-btn:hover {
  border-color: var(--focus);
}
body .medium-text {
  font-weight: 500;
}
body .gray-text {
  color: var(--text-gray);
  font-weight: 500;
}
body ul,
body ol {
  list-style: none;
  padding: 0;
}
body ul, body ol, body h1, body h2, body h3, body h4, body h5, body h6, body p {
  margin: 0;
}
body h1,
body .h1,
body .h2,
body .h2 {
  font-weight: 700;
}
body h3,
body h4,
body h5,
body h6,
body .h3,
body .h4,
body .h5,
body .h6 {
  font-weight: 600;
}
body h1,
body .h1 {
  line-height: 1.3;
  font-size: var(--h1);
}
body h2,
body .h2 {
  font-size: var(--h2);
}
body h3,
body .h3 {
  font-size: var(--h3);
}
body h4,
body .h4 {
  font-size: var(--h4);
}
body h5,
body .h5 {
  font-size: var(--h5);
}
body h6,
body .h6 {
  font-size: var(--h6);
}
body h6.fz,
body .h6.fz {
  font-size: var(--fz);
}
body .hidden-link {
  width: 100%;
  background: var(--gray-bg);
  font-weight: 400;
  padding: 0.6rem 1rem;
  border-radius: var(--rad-sm);
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 0.2s;
  justify-content: space-between;
}
body .hidden-link span.icon {
  color: var(--text-gray);
  transition: 0.2s;
  display: flex;
}
body .hidden-link:hover {
  background: var(--opacity);
}
body .hidden-link.show {
  background: var(--opacity);
  color: var(--theme);
}
body .hidden-link.show span.icon {
  color: var(--theme);
}
body .hidden-link.show:hover {
  color: #fff;
  background: var(--theme);
}
body .hidden-link.show:hover span.icon {
  color: #fff;
}
body .crop-text {
  overflow: hidden;
  white-space: nowrap;
}
body .icon-block {
  width: var(--field);
  height: var(--field);
  border-radius: var(--rad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  transition: 0.3s;
}
body .icon-block span {
  display: flex;
}
body .icon-block:hover {
  background: var(--gray-bg);
  background: var(--opacity);
  color: var(--theme);
}
body .icon-block.medium {
  --field: var(--field-medium);
}
body .icon-block.small {
  --field: var(--field-small);
}
body .icon-block.mini {
  --field: var(--field-mini);
}
body .subtitle {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--theme);
}
body .article:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle) {
  margin-bottom: 2rem;
}
body .article:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).bm {
  margin-bottom: 3rem;
}
body .article:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).bordered:not(.btn) {
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
}
body .article:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).bordered:not(.btn).bm {
  padding-bottom: 3rem;
}
body .article:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).bordered:not(.btn).small-pb {
  padding-bottom: 1rem;
}
body .article:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).mt {
  margin-top: auto;
}
body .article.all-mb > *:not(.mb0) {
  margin-bottom: 2rem;
}
body .article.all-mb > *:not(.mb0).bm {
  margin-bottom: 3rem;
}
body .article.all-mb > *:not(.mb0).bordered {
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
}
body .article.all-mb > *:not(.mb0).bordered.bm {
  padding-bottom: 3rem;
}
body .article.half {
  width: var(--article-half);
}
body .article.center {
  width: var(--article-half);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
body .article-mc:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle) {
  margin-bottom: 0.3rem;
}
body .article-mc:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).bm {
  margin-bottom: 0.6rem;
}
body .article-mc:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).bordered:not(.btn) {
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.3rem;
}
body .article-mc:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).bordered:not(.btn).bm {
  padding-bottom: 0.6rem;
}
body .article-mc:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).bordered:not(.btn).small-pb {
  padding-bottom: 0.15rem;
}
body .article-mc:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).mt {
  margin-top: auto;
}
body .article-mc.all-mb > *:not(.mb0) {
  margin-bottom: 0.3rem;
}
body .article-mc.all-mb > *:not(.mb0).bm {
  margin-bottom: 0.6rem;
}
body .article-mc.all-mb > *:not(.mb0).bordered {
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.3rem;
}
body .article-mc.all-mb > *:not(.mb0).bordered.bm {
  padding-bottom: 0.6rem;
}
body .article-mc.half {
  width: var(--article-half);
}
body .article-mc.center {
  width: var(--article-half);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
body .article-sm:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle) {
  margin-bottom: 1rem;
}
body .article-sm:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).bm {
  margin-bottom: 2rem;
}
body .article-sm:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).bordered:not(.btn) {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}
body .article-sm:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).bordered:not(.btn).bm {
  padding-bottom: 2rem;
}
body .article-sm:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).bordered:not(.btn).small-pb {
  padding-bottom: 0.5rem;
}
body .article-sm:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).mt {
  margin-top: auto;
}
body .article-sm.all-mb > *:not(.mb0) {
  margin-bottom: 1rem;
}
body .article-sm.all-mb > *:not(.mb0).bm {
  margin-bottom: 2rem;
}
body .article-sm.all-mb > *:not(.mb0).bordered {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}
body .article-sm.all-mb > *:not(.mb0).bordered.bm {
  padding-bottom: 2rem;
}
body .article-sm.half {
  width: var(--article-half);
}
body .article-sm.center {
  width: var(--article-half);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
body .article-md:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle) {
  margin-bottom: 3rem;
}
body .article-md:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).bm {
  margin-bottom: 4rem;
}
body .article-md:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).bordered:not(.btn) {
  border-bottom: 1px solid var(--border);
  padding-bottom: 3rem;
}
body .article-md:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).bordered:not(.btn).bm {
  padding-bottom: 4rem;
}
body .article-md:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).bordered:not(.btn).small-pb {
  padding-bottom: 1.5rem;
}
body .article-md:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).mt {
  margin-top: auto;
}
body .article-md.all-mb > *:not(.mb0) {
  margin-bottom: 3rem;
}
body .article-md.all-mb > *:not(.mb0).bm {
  margin-bottom: 4rem;
}
body .article-md.all-mb > *:not(.mb0).bordered {
  border-bottom: 1px solid var(--border);
  padding-bottom: 3rem;
}
body .article-md.all-mb > *:not(.mb0).bordered.bm {
  padding-bottom: 4rem;
}
body .article-md.half {
  width: var(--article-half);
}
body .article-md.center {
  width: var(--article-half);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
body .article-bg:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle) {
  margin-bottom: 4rem;
}
body .article-bg:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).bm {
  margin-bottom: 5rem;
}
body .article-bg:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).bordered:not(.btn) {
  border-bottom: 1px solid var(--border);
  padding-bottom: 4rem;
}
body .article-bg:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).bordered:not(.btn).bm {
  padding-bottom: 5rem;
}
body .article-bg:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).bordered:not(.btn).small-pb {
  padding-bottom: 2rem;
}
body .article-bg:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).mt {
  margin-top: auto;
}
body .article-bg.all-mb > *:not(.mb0) {
  margin-bottom: 4rem;
}
body .article-bg.all-mb > *:not(.mb0).bm {
  margin-bottom: 5rem;
}
body .article-bg.all-mb > *:not(.mb0).bordered {
  border-bottom: 1px solid var(--border);
  padding-bottom: 4rem;
}
body .article-bg.all-mb > *:not(.mb0).bordered.bm {
  padding-bottom: 5rem;
}
body .article-bg.half {
  width: var(--article-half);
}
body .article-bg.center {
  width: var(--article-half);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
body .article-lg:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle) {
  margin-bottom: 6rem;
}
body .article-lg:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).bm {
  margin-bottom: 7rem;
}
body .article-lg:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).bordered:not(.btn) {
  border-bottom: 1px solid var(--border);
  padding-bottom: 6rem;
}
body .article-lg:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).bordered:not(.btn).bm {
  padding-bottom: 7rem;
}
body .article-lg:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).bordered:not(.btn).small-pb {
  padding-bottom: 3rem;
}
body .article-lg:not(.all-mb) > *:not(:last-child):not(.mb0):not(.subtitle).mt {
  margin-top: auto;
}
body .article-lg.all-mb > *:not(.mb0) {
  margin-bottom: 6rem;
}
body .article-lg.all-mb > *:not(.mb0).bm {
  margin-bottom: 7rem;
}
body .article-lg.all-mb > *:not(.mb0).bordered {
  border-bottom: 1px solid var(--border);
  padding-bottom: 6rem;
}
body .article-lg.all-mb > *:not(.mb0).bordered.bm {
  padding-bottom: 7rem;
}
body .article-lg.half {
  width: var(--article-half);
}
body .article-lg.center {
  width: var(--article-half);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
body [data-empty]:empty:before {
  content: attr(data-empty);
}
body .hide-empty:empty {
  display: none;
}
body .empty-block {
  padding: var(--padding-bg) var(--padding);
  text-align: center;
  color: var(--text-gray);
}
body .empty-block.no-padding {
  padding: 0;
}
body .empty-block.vertical {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  flex-grow: 1;
}
body .empty-block .icon {
  font-size: 7rem;
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}
body .empty-block.hidden {
  display: none;
}
body .tabs {
  align-self: stretch;
  display: flex;
}
body .tabs .tab {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--padding-sm) var(--padding);
  font-weight: 500;
  color: var(--text-gray);
  transition: 0.2s;
  position: relative;
  cursor: pointer;
}
body .tabs .tab:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  transition: 0.2s;
  height: 3px;
  background: var(--theme);
  border-radius: 3px 3px 0 0;
  transform: translateX(-50%);
}
body .tabs .tab:hover {
  color: var(--text);
}
body .tabs .tab.active {
  color: var(--text);
}
body .tabs .tab.active:after {
  width: 100%;
}
body .tabs.grow .tab {
  width: 0;
  flex-grow: 1;
}
body .inline {
  display: flex;
  width: fit-content;
  --margin: 0.6rem;
}
body .inline.full {
  width: 100%;
}
body .inline .line {
  display: flex;
  margin: calc(var(--margin) * -1);
  align-items: center;
  width: calc(100% + var(--margin) * 2);
}
body .inline .line > .grow {
  width: 0;
  flex-grow: 1;
}
body .inline .line > .center {
  margin: 0 auto;
  padding: var(--margin);
}
body .inline .line > * {
  margin: var(--margin);
}
body .inline .line .sep {
  align-self: stretch;
  width: 1px;
  background: var(--border);
  margin: var(--margin) calc(var(--margin) * 2);
}
body .inline.center .line {
  justify-content: center;
}
body .inline.left .line {
  justify-content: flex-start;
}
body .inline.right .line {
  justify-content: flex-end;
}
body .inline.start .line {
  align-items: flex-start;
}
body .inline.end .line {
  align-items: flex-end;
}
body .inline.start .line {
  align-items: flex-start;
}
body .inline.large {
  --margin: 1.6rem;
}
body .inline.medium {
  --margin: 1rem;
}
body .inline.small {
  --margin: 0.2rem;
}
body .label {
  color: var(--text-gray);
  font-weight: 500;
  font-size: var(--small);
  line-height: 1;
  display: block;
}
body ymaps[class*=controls-pane],
body ymaps[class*=copyrights-pane] {
  display: none;
}
body ymaps[class*=ground-pane] {
  filter: grayscale(1);
}
body .btn,
body a.btn,
body a:visited.btn {
  height: var(--field);
  font-size: var(--fz);
  display: flex;
  align-items: center;
  padding: 0;
  border-radius: var(--rad);
  border: 1px solid transparent;
  background: var(--theme);
  color: #fff;
  font-weight: 500;
  --btn-border: rgba(255,255,255,0.1);
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  --loading-color-1: rgba(255,255,255,0.2);
  --loading-color-2: #fff;
  flex-shrink: 0;
  width: fit-content;
}
body .btn.rounded,
body a.btn.rounded,
body a:visited.btn.rounded {
  border-radius: 3rem;
}
body .btn span.icon,
body a.btn span.icon,
body a:visited.btn span.icon {
  display: flex;
  justify-content: center;
  width: calc(var(--field) - 2px);
  font-size: 1.8rem;
}
body .btn span.image,
body a.btn span.image,
body a:visited.btn span.image {
  width: calc(var(--field) * 0.8 - 2px);
  height: calc(var(--field) * 0.8 - 2px);
  margin: 0 calc(var(--field) * 0.1);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
body .btn span.text,
body a.btn span.text,
body a:visited.btn span.text {
  padding: 0 calc(var(--field) / 2);
  flex-grow: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .btn span.text:before,
body a.btn span.text:before,
body a:visited.btn span.text:before {
  margin-right: 0.8rem;
}
body .btn span.text.after:before,
body a.btn span.text.after:before,
body a:visited.btn span.text.after:before {
  margin-right: 0;
  margin-left: 0.8rem;
  order: 1;
}
body .btn span.arrow,
body a.btn span.arrow,
body a:visited.btn span.arrow {
  width: var(--field);
  align-self: stretch;
  border-left: 1px solid var(--btn-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}
body .btn span.arrow:before,
body a.btn span.arrow:before,
body a:visited.btn span.arrow:before {
  font-size: 0.8em;
}
body .btn span.arrow:hover,
body a.btn span.arrow:hover,
body a:visited.btn span.arrow:hover {
  background: var(--btn-border);
  border-color: transparent;
}
body .btn span,
body a.btn span,
body a:visited.btn span {
  transition: 0.2s transform;
}
body .btn.full,
body a.btn.full,
body a:visited.btn.full {
  width: 100%;
}
body .btn:hover,
body a.btn:hover,
body a:visited.btn:hover {
  background: var(--light);
}
body .btn:active,
body a.btn:active,
body a:visited.btn:active {
  box-shadow: 0 0 0 4px var(--focus);
}
body .btn:active span,
body a.btn:active span,
body a:visited.btn:active span {
  transform: scale(0.95);
}
body .btn.gray,
body a.btn.gray,
body a:visited.btn.gray {
  background: var(--gray-bg);
  color: var(--text);
}
body .btn.gray:hover,
body a.btn.gray:hover,
body a:visited.btn.gray:hover {
  background: var(--theme);
  color: #fff;
}
body .btn.gray:active,
body a.btn.gray:active,
body a:visited.btn.gray:active {
  background: var(--dark);
  color: #fff;
}
body .btn.ghost,
body a.btn.ghost,
body a:visited.btn.ghost {
  background: none;
  color: var(--text);
  --loading-color-1: var(--border);
  --loading-color-2: var(--text-gray);
}
body .btn.ghost:hover,
body a.btn.ghost:hover,
body a:visited.btn.ghost:hover {
  background: var(--opacity);
  color: var(--theme);
}
body .btn.ghost-gray,
body a.btn.ghost-gray,
body a:visited.btn.ghost-gray {
  background: none;
  color: var(--text-gray);
  --loading-color-1: var(--border);
  --loading-color-2: var(--text-gray);
}
body .btn.ghost-gray:hover,
body a.btn.ghost-gray:hover,
body a:visited.btn.ghost-gray:hover {
  background: var(--opacity);
  color: var(--theme);
}
body .btn.ghost-theme,
body a.btn.ghost-theme,
body a:visited.btn.ghost-theme {
  background: none;
  color: var(--theme);
  --loading-color-1: var(--opacity);
  --loading-color-2: var(--theme);
}
body .btn.ghost-theme:hover,
body a.btn.ghost-theme:hover,
body a:visited.btn.ghost-theme:hover {
  background: var(--opacity);
  color: var(--theme);
}
body .btn.outline,
body a.btn.outline,
body a:visited.btn.outline {
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  --loading-color-1: var(--border);
  --loading-color-2: var(--text-gray);
}
body .btn.outline:hover,
body a.btn.outline:hover,
body a:visited.btn.outline:hover {
  background: var(--opacity);
  color: var(--theme);
  border-color: transparent;
}
body .btn.large,
body a.btn.large,
body a:visited.btn.large {
  --field: var(--field-large);
}
body .btn.big,
body a.btn.big,
body a:visited.btn.big {
  --field: var(--field-big);
}
body .btn.medium,
body a.btn.medium,
body a:visited.btn.medium {
  --field: var(--field-medium);
}
body .btn.small,
body a.btn.small,
body a:visited.btn.small {
  --field: var(--field-small);
}
body .btn.small span.icon,
body a.btn.small span.icon,
body a:visited.btn.small span.icon {
  font-size: 1.4rem;
}
body .btn.mini,
body a.btn.mini,
body a:visited.btn.mini {
  --field: var(--field-mini);
}
body .btn:disabled,
body a.btn:disabled,
body a:visited.btn:disabled {
  border-color: transparent !important;
  background: var(--border) !important;
  color: var(--text-gray) !important;
  cursor: default;
  box-shadow: none !important;
  --loading-color-1: var(--border);
  --loading-color-2: var(--text-gray);
}
body .btn .spinner,
body a.btn .spinner,
body a:visited.btn .spinner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .btn .spinner:before,
body a.btn .spinner:before,
body a:visited.btn .spinner:before {
  content: "";
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--loading-color-1);
  border-radius: 100%;
  border-bottom: 2px solid var(--loading-color-2);
  animation: loading 0.7s infinite linear;
}
body .btn.loading,
body a.btn.loading,
body a:visited.btn.loading {
  box-shadow: none !important;
  cursor: default;
}
body .btn.loading > *:not(.spinner),
body a.btn.loading > *:not(.spinner),
body a:visited.btn.loading > *:not(.spinner) {
  opacity: 0;
}
body .btn.loading .spinner,
body a.btn.loading .spinner,
body a:visited.btn.loading .spinner {
  display: flex;
}
body .pagination {
  width: 100%;
  padding-top: 1.5rem;
}
body .pagination .nav-links {
  display: flex;
  align-items: baseline;
  justify-content: center;
}
body .pagination .nav-links > * {
  padding: 0 1rem;
}
body .quantity {
  position: relative;
}
body .quantity button {
  position: absolute;
  --margin: calc((var(--field) - var(--field-medium)) / 2);
  top: var(--margin);
  background: var(--gray-bg);
  width: var(--field-medium);
  height: var(--field-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 2rem;
  padding: 0;
  cursor: pointer;
  transition: 0.2s;
  border-radius: var(--rad);
}
body .quantity button:hover {
  background: var(--theme);
  color: #fff;
}
body .quantity button:first-child {
  left: var(--margin);
}
body .quantity button:last-child {
  right: var(--margin);
}
body .quantity input {
  text-align: center;
}
body section.bordered {
  border-bottom: 1px solid var(--border);
}
body .section-padding {
  padding: var(--section-padding) 0;
}
body .section-padding.top {
  padding: var(--section-padding) 0 0 0;
}
body .section-padding.bottom {
  padding: 0 0 var(--section-padding) 0;
}
body .count-square {
  color: var(--text-gray);
  background: var(--border);
  font-weight: 600;
  padding: 0 0.4rem;
  border-radius: var(--rad-sm);
  transition: 0.2s;
}
body .hide-block {
  display: none;
}
body .text-center {
  text-align: center;
}
body .theme-text {
  color: var(--theme);
}
body input[type=text]:not(.large-time-input):not(.cell-data),
body input[type=email]:not(.large-time-input):not(.cell-data),
body input[type=url]:not(.large-time-input):not(.cell-data),
body input[type=password]:not(.large-time-input):not(.cell-data),
body input[type=search]:not(.large-time-input):not(.cell-data),
body input[type=number]:not(.large-time-input):not(.cell-data),
body input[type=tel]:not(.large-time-input):not(.cell-data),
body input[type=range]:not(.large-time-input):not(.cell-data),
body input[type=date]:not(.large-time-input):not(.cell-data),
body input[type=month]:not(.large-time-input):not(.cell-data),
body input[type=week]:not(.large-time-input):not(.cell-data),
body input[type=time]:not(.large-time-input):not(.cell-data),
body input[type=datetime]:not(.large-time-input):not(.cell-data),
body input[type=datetime-local]:not(.large-time-input):not(.cell-data),
body input[type=color]:not(.large-time-input):not(.cell-data),
body textarea:not(.large-time-input):not(.cell-data) {
  height: var(--field);
  border-radius: var(--rad);
  border: 1px solid transparent;
  background: var(--gray-bg);
  padding: 0 calc(var(--field) / 2.5);
  font-size: var(--fz);
  transition: 0.3s;
  width: 100%;
  color: var(--text);
}
body input[type=text]:not(.large-time-input):not(.cell-data).center,
body input[type=email]:not(.large-time-input):not(.cell-data).center,
body input[type=url]:not(.large-time-input):not(.cell-data).center,
body input[type=password]:not(.large-time-input):not(.cell-data).center,
body input[type=search]:not(.large-time-input):not(.cell-data).center,
body input[type=number]:not(.large-time-input):not(.cell-data).center,
body input[type=tel]:not(.large-time-input):not(.cell-data).center,
body input[type=range]:not(.large-time-input):not(.cell-data).center,
body input[type=date]:not(.large-time-input):not(.cell-data).center,
body input[type=month]:not(.large-time-input):not(.cell-data).center,
body input[type=week]:not(.large-time-input):not(.cell-data).center,
body input[type=time]:not(.large-time-input):not(.cell-data).center,
body input[type=datetime]:not(.large-time-input):not(.cell-data).center,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).center,
body input[type=color]:not(.large-time-input):not(.cell-data).center,
body textarea:not(.large-time-input):not(.cell-data).center {
  text-align: center;
}
body input[type=text]:not(.large-time-input):not(.cell-data).text,
body input[type=email]:not(.large-time-input):not(.cell-data).text,
body input[type=url]:not(.large-time-input):not(.cell-data).text,
body input[type=password]:not(.large-time-input):not(.cell-data).text,
body input[type=search]:not(.large-time-input):not(.cell-data).text,
body input[type=number]:not(.large-time-input):not(.cell-data).text,
body input[type=tel]:not(.large-time-input):not(.cell-data).text,
body input[type=range]:not(.large-time-input):not(.cell-data).text,
body input[type=date]:not(.large-time-input):not(.cell-data).text,
body input[type=month]:not(.large-time-input):not(.cell-data).text,
body input[type=week]:not(.large-time-input):not(.cell-data).text,
body input[type=time]:not(.large-time-input):not(.cell-data).text,
body input[type=datetime]:not(.large-time-input):not(.cell-data).text,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).text,
body input[type=color]:not(.large-time-input):not(.cell-data).text,
body textarea:not(.large-time-input):not(.cell-data).text {
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0;
  transition: 0s;
}
body input[type=text]:not(.large-time-input):not(.cell-data).bg,
body input[type=email]:not(.large-time-input):not(.cell-data).bg,
body input[type=url]:not(.large-time-input):not(.cell-data).bg,
body input[type=password]:not(.large-time-input):not(.cell-data).bg,
body input[type=search]:not(.large-time-input):not(.cell-data).bg,
body input[type=number]:not(.large-time-input):not(.cell-data).bg,
body input[type=tel]:not(.large-time-input):not(.cell-data).bg,
body input[type=range]:not(.large-time-input):not(.cell-data).bg,
body input[type=date]:not(.large-time-input):not(.cell-data).bg,
body input[type=month]:not(.large-time-input):not(.cell-data).bg,
body input[type=week]:not(.large-time-input):not(.cell-data).bg,
body input[type=time]:not(.large-time-input):not(.cell-data).bg,
body input[type=datetime]:not(.large-time-input):not(.cell-data).bg,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).bg,
body input[type=color]:not(.large-time-input):not(.cell-data).bg,
body textarea:not(.large-time-input):not(.cell-data).bg {
  border-color: transparent;
  background: var(--bg);
}
body input[type=text]:not(.large-time-input):not(.cell-data).bg:hover,
body input[type=email]:not(.large-time-input):not(.cell-data).bg:hover,
body input[type=url]:not(.large-time-input):not(.cell-data).bg:hover,
body input[type=password]:not(.large-time-input):not(.cell-data).bg:hover,
body input[type=search]:not(.large-time-input):not(.cell-data).bg:hover,
body input[type=number]:not(.large-time-input):not(.cell-data).bg:hover,
body input[type=tel]:not(.large-time-input):not(.cell-data).bg:hover,
body input[type=range]:not(.large-time-input):not(.cell-data).bg:hover,
body input[type=date]:not(.large-time-input):not(.cell-data).bg:hover,
body input[type=month]:not(.large-time-input):not(.cell-data).bg:hover,
body input[type=week]:not(.large-time-input):not(.cell-data).bg:hover,
body input[type=time]:not(.large-time-input):not(.cell-data).bg:hover,
body input[type=datetime]:not(.large-time-input):not(.cell-data).bg:hover,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).bg:hover,
body input[type=color]:not(.large-time-input):not(.cell-data).bg:hover,
body textarea:not(.large-time-input):not(.cell-data).bg:hover {
  border-color: var(--opacity);
  box-shadow: 0 0 0 3px var(--opacity);
}
body input[type=text]:not(.large-time-input):not(.cell-data).outline,
body input[type=email]:not(.large-time-input):not(.cell-data).outline,
body input[type=url]:not(.large-time-input):not(.cell-data).outline,
body input[type=password]:not(.large-time-input):not(.cell-data).outline,
body input[type=search]:not(.large-time-input):not(.cell-data).outline,
body input[type=number]:not(.large-time-input):not(.cell-data).outline,
body input[type=tel]:not(.large-time-input):not(.cell-data).outline,
body input[type=range]:not(.large-time-input):not(.cell-data).outline,
body input[type=date]:not(.large-time-input):not(.cell-data).outline,
body input[type=month]:not(.large-time-input):not(.cell-data).outline,
body input[type=week]:not(.large-time-input):not(.cell-data).outline,
body input[type=time]:not(.large-time-input):not(.cell-data).outline,
body input[type=datetime]:not(.large-time-input):not(.cell-data).outline,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).outline,
body input[type=color]:not(.large-time-input):not(.cell-data).outline,
body textarea:not(.large-time-input):not(.cell-data).outline {
  border-color: var(--border);
  background: var(--bg);
}
body input[type=text]:not(.large-time-input):not(.cell-data).outline:hover,
body input[type=email]:not(.large-time-input):not(.cell-data).outline:hover,
body input[type=url]:not(.large-time-input):not(.cell-data).outline:hover,
body input[type=password]:not(.large-time-input):not(.cell-data).outline:hover,
body input[type=search]:not(.large-time-input):not(.cell-data).outline:hover,
body input[type=number]:not(.large-time-input):not(.cell-data).outline:hover,
body input[type=tel]:not(.large-time-input):not(.cell-data).outline:hover,
body input[type=range]:not(.large-time-input):not(.cell-data).outline:hover,
body input[type=date]:not(.large-time-input):not(.cell-data).outline:hover,
body input[type=month]:not(.large-time-input):not(.cell-data).outline:hover,
body input[type=week]:not(.large-time-input):not(.cell-data).outline:hover,
body input[type=time]:not(.large-time-input):not(.cell-data).outline:hover,
body input[type=datetime]:not(.large-time-input):not(.cell-data).outline:hover,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).outline:hover,
body input[type=color]:not(.large-time-input):not(.cell-data).outline:hover,
body textarea:not(.large-time-input):not(.cell-data).outline:hover {
  border-color: var(--opacity);
  box-shadow: 0 0 0 3px var(--opacity);
}
body input[type=text]:not(.large-time-input):not(.cell-data).ghost,
body input[type=email]:not(.large-time-input):not(.cell-data).ghost,
body input[type=url]:not(.large-time-input):not(.cell-data).ghost,
body input[type=password]:not(.large-time-input):not(.cell-data).ghost,
body input[type=search]:not(.large-time-input):not(.cell-data).ghost,
body input[type=number]:not(.large-time-input):not(.cell-data).ghost,
body input[type=tel]:not(.large-time-input):not(.cell-data).ghost,
body input[type=range]:not(.large-time-input):not(.cell-data).ghost,
body input[type=date]:not(.large-time-input):not(.cell-data).ghost,
body input[type=month]:not(.large-time-input):not(.cell-data).ghost,
body input[type=week]:not(.large-time-input):not(.cell-data).ghost,
body input[type=time]:not(.large-time-input):not(.cell-data).ghost,
body input[type=datetime]:not(.large-time-input):not(.cell-data).ghost,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).ghost,
body input[type=color]:not(.large-time-input):not(.cell-data).ghost,
body textarea:not(.large-time-input):not(.cell-data).ghost {
  padding: 0;
  border: none;
  box-shadow: none;
}
body input[type=text]:not(.large-time-input):not(.cell-data).ghost:hover,
body input[type=email]:not(.large-time-input):not(.cell-data).ghost:hover,
body input[type=url]:not(.large-time-input):not(.cell-data).ghost:hover,
body input[type=password]:not(.large-time-input):not(.cell-data).ghost:hover,
body input[type=search]:not(.large-time-input):not(.cell-data).ghost:hover,
body input[type=number]:not(.large-time-input):not(.cell-data).ghost:hover,
body input[type=tel]:not(.large-time-input):not(.cell-data).ghost:hover,
body input[type=range]:not(.large-time-input):not(.cell-data).ghost:hover,
body input[type=date]:not(.large-time-input):not(.cell-data).ghost:hover,
body input[type=month]:not(.large-time-input):not(.cell-data).ghost:hover,
body input[type=week]:not(.large-time-input):not(.cell-data).ghost:hover,
body input[type=time]:not(.large-time-input):not(.cell-data).ghost:hover,
body input[type=datetime]:not(.large-time-input):not(.cell-data).ghost:hover,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).ghost:hover,
body input[type=color]:not(.large-time-input):not(.cell-data).ghost:hover,
body textarea:not(.large-time-input):not(.cell-data).ghost:hover {
  background: var(--gray-bg);
  padding: 0 1rem;
}
body input[type=text]:not(.large-time-input):not(.cell-data).ghost:focus,
body input[type=email]:not(.large-time-input):not(.cell-data).ghost:focus,
body input[type=url]:not(.large-time-input):not(.cell-data).ghost:focus,
body input[type=password]:not(.large-time-input):not(.cell-data).ghost:focus,
body input[type=search]:not(.large-time-input):not(.cell-data).ghost:focus,
body input[type=number]:not(.large-time-input):not(.cell-data).ghost:focus,
body input[type=tel]:not(.large-time-input):not(.cell-data).ghost:focus,
body input[type=range]:not(.large-time-input):not(.cell-data).ghost:focus,
body input[type=date]:not(.large-time-input):not(.cell-data).ghost:focus,
body input[type=month]:not(.large-time-input):not(.cell-data).ghost:focus,
body input[type=week]:not(.large-time-input):not(.cell-data).ghost:focus,
body input[type=time]:not(.large-time-input):not(.cell-data).ghost:focus,
body input[type=datetime]:not(.large-time-input):not(.cell-data).ghost:focus,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).ghost:focus,
body input[type=color]:not(.large-time-input):not(.cell-data).ghost:focus,
body textarea:not(.large-time-input):not(.cell-data).ghost:focus {
  padding: 0 1rem;
  box-shadow: 0 0 0 3px var(--focus);
  background: var(--opacity);
}
body input[type=text]:not(.large-time-input):not(.cell-data).ghost.h1, body input[type=text]:not(.large-time-input):not(.cell-data).ghost.h2, body input[type=text]:not(.large-time-input):not(.cell-data).ghost.h3, body input[type=text]:not(.large-time-input):not(.cell-data).ghost.h4, body input[type=text]:not(.large-time-input):not(.cell-data).ghost.h5, body input[type=text]:not(.large-time-input):not(.cell-data).ghost.h6,
body input[type=email]:not(.large-time-input):not(.cell-data).ghost.h1,
body input[type=email]:not(.large-time-input):not(.cell-data).ghost.h2,
body input[type=email]:not(.large-time-input):not(.cell-data).ghost.h3,
body input[type=email]:not(.large-time-input):not(.cell-data).ghost.h4,
body input[type=email]:not(.large-time-input):not(.cell-data).ghost.h5,
body input[type=email]:not(.large-time-input):not(.cell-data).ghost.h6,
body input[type=url]:not(.large-time-input):not(.cell-data).ghost.h1,
body input[type=url]:not(.large-time-input):not(.cell-data).ghost.h2,
body input[type=url]:not(.large-time-input):not(.cell-data).ghost.h3,
body input[type=url]:not(.large-time-input):not(.cell-data).ghost.h4,
body input[type=url]:not(.large-time-input):not(.cell-data).ghost.h5,
body input[type=url]:not(.large-time-input):not(.cell-data).ghost.h6,
body input[type=password]:not(.large-time-input):not(.cell-data).ghost.h1,
body input[type=password]:not(.large-time-input):not(.cell-data).ghost.h2,
body input[type=password]:not(.large-time-input):not(.cell-data).ghost.h3,
body input[type=password]:not(.large-time-input):not(.cell-data).ghost.h4,
body input[type=password]:not(.large-time-input):not(.cell-data).ghost.h5,
body input[type=password]:not(.large-time-input):not(.cell-data).ghost.h6,
body input[type=search]:not(.large-time-input):not(.cell-data).ghost.h1,
body input[type=search]:not(.large-time-input):not(.cell-data).ghost.h2,
body input[type=search]:not(.large-time-input):not(.cell-data).ghost.h3,
body input[type=search]:not(.large-time-input):not(.cell-data).ghost.h4,
body input[type=search]:not(.large-time-input):not(.cell-data).ghost.h5,
body input[type=search]:not(.large-time-input):not(.cell-data).ghost.h6,
body input[type=number]:not(.large-time-input):not(.cell-data).ghost.h1,
body input[type=number]:not(.large-time-input):not(.cell-data).ghost.h2,
body input[type=number]:not(.large-time-input):not(.cell-data).ghost.h3,
body input[type=number]:not(.large-time-input):not(.cell-data).ghost.h4,
body input[type=number]:not(.large-time-input):not(.cell-data).ghost.h5,
body input[type=number]:not(.large-time-input):not(.cell-data).ghost.h6,
body input[type=tel]:not(.large-time-input):not(.cell-data).ghost.h1,
body input[type=tel]:not(.large-time-input):not(.cell-data).ghost.h2,
body input[type=tel]:not(.large-time-input):not(.cell-data).ghost.h3,
body input[type=tel]:not(.large-time-input):not(.cell-data).ghost.h4,
body input[type=tel]:not(.large-time-input):not(.cell-data).ghost.h5,
body input[type=tel]:not(.large-time-input):not(.cell-data).ghost.h6,
body input[type=range]:not(.large-time-input):not(.cell-data).ghost.h1,
body input[type=range]:not(.large-time-input):not(.cell-data).ghost.h2,
body input[type=range]:not(.large-time-input):not(.cell-data).ghost.h3,
body input[type=range]:not(.large-time-input):not(.cell-data).ghost.h4,
body input[type=range]:not(.large-time-input):not(.cell-data).ghost.h5,
body input[type=range]:not(.large-time-input):not(.cell-data).ghost.h6,
body input[type=date]:not(.large-time-input):not(.cell-data).ghost.h1,
body input[type=date]:not(.large-time-input):not(.cell-data).ghost.h2,
body input[type=date]:not(.large-time-input):not(.cell-data).ghost.h3,
body input[type=date]:not(.large-time-input):not(.cell-data).ghost.h4,
body input[type=date]:not(.large-time-input):not(.cell-data).ghost.h5,
body input[type=date]:not(.large-time-input):not(.cell-data).ghost.h6,
body input[type=month]:not(.large-time-input):not(.cell-data).ghost.h1,
body input[type=month]:not(.large-time-input):not(.cell-data).ghost.h2,
body input[type=month]:not(.large-time-input):not(.cell-data).ghost.h3,
body input[type=month]:not(.large-time-input):not(.cell-data).ghost.h4,
body input[type=month]:not(.large-time-input):not(.cell-data).ghost.h5,
body input[type=month]:not(.large-time-input):not(.cell-data).ghost.h6,
body input[type=week]:not(.large-time-input):not(.cell-data).ghost.h1,
body input[type=week]:not(.large-time-input):not(.cell-data).ghost.h2,
body input[type=week]:not(.large-time-input):not(.cell-data).ghost.h3,
body input[type=week]:not(.large-time-input):not(.cell-data).ghost.h4,
body input[type=week]:not(.large-time-input):not(.cell-data).ghost.h5,
body input[type=week]:not(.large-time-input):not(.cell-data).ghost.h6,
body input[type=time]:not(.large-time-input):not(.cell-data).ghost.h1,
body input[type=time]:not(.large-time-input):not(.cell-data).ghost.h2,
body input[type=time]:not(.large-time-input):not(.cell-data).ghost.h3,
body input[type=time]:not(.large-time-input):not(.cell-data).ghost.h4,
body input[type=time]:not(.large-time-input):not(.cell-data).ghost.h5,
body input[type=time]:not(.large-time-input):not(.cell-data).ghost.h6,
body input[type=datetime]:not(.large-time-input):not(.cell-data).ghost.h1,
body input[type=datetime]:not(.large-time-input):not(.cell-data).ghost.h2,
body input[type=datetime]:not(.large-time-input):not(.cell-data).ghost.h3,
body input[type=datetime]:not(.large-time-input):not(.cell-data).ghost.h4,
body input[type=datetime]:not(.large-time-input):not(.cell-data).ghost.h5,
body input[type=datetime]:not(.large-time-input):not(.cell-data).ghost.h6,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).ghost.h1,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).ghost.h2,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).ghost.h3,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).ghost.h4,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).ghost.h5,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).ghost.h6,
body input[type=color]:not(.large-time-input):not(.cell-data).ghost.h1,
body input[type=color]:not(.large-time-input):not(.cell-data).ghost.h2,
body input[type=color]:not(.large-time-input):not(.cell-data).ghost.h3,
body input[type=color]:not(.large-time-input):not(.cell-data).ghost.h4,
body input[type=color]:not(.large-time-input):not(.cell-data).ghost.h5,
body input[type=color]:not(.large-time-input):not(.cell-data).ghost.h6,
body textarea:not(.large-time-input):not(.cell-data).ghost.h1,
body textarea:not(.large-time-input):not(.cell-data).ghost.h2,
body textarea:not(.large-time-input):not(.cell-data).ghost.h3,
body textarea:not(.large-time-input):not(.cell-data).ghost.h4,
body textarea:not(.large-time-input):not(.cell-data).ghost.h5,
body textarea:not(.large-time-input):not(.cell-data).ghost.h6 {
  font-weight: 600;
}
body input[type=text]:not(.large-time-input):not(.cell-data).ghost.h1,
body input[type=email]:not(.large-time-input):not(.cell-data).ghost.h1,
body input[type=url]:not(.large-time-input):not(.cell-data).ghost.h1,
body input[type=password]:not(.large-time-input):not(.cell-data).ghost.h1,
body input[type=search]:not(.large-time-input):not(.cell-data).ghost.h1,
body input[type=number]:not(.large-time-input):not(.cell-data).ghost.h1,
body input[type=tel]:not(.large-time-input):not(.cell-data).ghost.h1,
body input[type=range]:not(.large-time-input):not(.cell-data).ghost.h1,
body input[type=date]:not(.large-time-input):not(.cell-data).ghost.h1,
body input[type=month]:not(.large-time-input):not(.cell-data).ghost.h1,
body input[type=week]:not(.large-time-input):not(.cell-data).ghost.h1,
body input[type=time]:not(.large-time-input):not(.cell-data).ghost.h1,
body input[type=datetime]:not(.large-time-input):not(.cell-data).ghost.h1,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).ghost.h1,
body input[type=color]:not(.large-time-input):not(.cell-data).ghost.h1,
body textarea:not(.large-time-input):not(.cell-data).ghost.h1 {
  font-size: var(--h1);
}
body input[type=text]:not(.large-time-input):not(.cell-data).ghost.h2,
body input[type=email]:not(.large-time-input):not(.cell-data).ghost.h2,
body input[type=url]:not(.large-time-input):not(.cell-data).ghost.h2,
body input[type=password]:not(.large-time-input):not(.cell-data).ghost.h2,
body input[type=search]:not(.large-time-input):not(.cell-data).ghost.h2,
body input[type=number]:not(.large-time-input):not(.cell-data).ghost.h2,
body input[type=tel]:not(.large-time-input):not(.cell-data).ghost.h2,
body input[type=range]:not(.large-time-input):not(.cell-data).ghost.h2,
body input[type=date]:not(.large-time-input):not(.cell-data).ghost.h2,
body input[type=month]:not(.large-time-input):not(.cell-data).ghost.h2,
body input[type=week]:not(.large-time-input):not(.cell-data).ghost.h2,
body input[type=time]:not(.large-time-input):not(.cell-data).ghost.h2,
body input[type=datetime]:not(.large-time-input):not(.cell-data).ghost.h2,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).ghost.h2,
body input[type=color]:not(.large-time-input):not(.cell-data).ghost.h2,
body textarea:not(.large-time-input):not(.cell-data).ghost.h2 {
  font-size: var(--h2);
}
body input[type=text]:not(.large-time-input):not(.cell-data).ghost.h3,
body input[type=email]:not(.large-time-input):not(.cell-data).ghost.h3,
body input[type=url]:not(.large-time-input):not(.cell-data).ghost.h3,
body input[type=password]:not(.large-time-input):not(.cell-data).ghost.h3,
body input[type=search]:not(.large-time-input):not(.cell-data).ghost.h3,
body input[type=number]:not(.large-time-input):not(.cell-data).ghost.h3,
body input[type=tel]:not(.large-time-input):not(.cell-data).ghost.h3,
body input[type=range]:not(.large-time-input):not(.cell-data).ghost.h3,
body input[type=date]:not(.large-time-input):not(.cell-data).ghost.h3,
body input[type=month]:not(.large-time-input):not(.cell-data).ghost.h3,
body input[type=week]:not(.large-time-input):not(.cell-data).ghost.h3,
body input[type=time]:not(.large-time-input):not(.cell-data).ghost.h3,
body input[type=datetime]:not(.large-time-input):not(.cell-data).ghost.h3,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).ghost.h3,
body input[type=color]:not(.large-time-input):not(.cell-data).ghost.h3,
body textarea:not(.large-time-input):not(.cell-data).ghost.h3 {
  font-size: var(--h3);
}
body input[type=text]:not(.large-time-input):not(.cell-data).ghost.h4,
body input[type=email]:not(.large-time-input):not(.cell-data).ghost.h4,
body input[type=url]:not(.large-time-input):not(.cell-data).ghost.h4,
body input[type=password]:not(.large-time-input):not(.cell-data).ghost.h4,
body input[type=search]:not(.large-time-input):not(.cell-data).ghost.h4,
body input[type=number]:not(.large-time-input):not(.cell-data).ghost.h4,
body input[type=tel]:not(.large-time-input):not(.cell-data).ghost.h4,
body input[type=range]:not(.large-time-input):not(.cell-data).ghost.h4,
body input[type=date]:not(.large-time-input):not(.cell-data).ghost.h4,
body input[type=month]:not(.large-time-input):not(.cell-data).ghost.h4,
body input[type=week]:not(.large-time-input):not(.cell-data).ghost.h4,
body input[type=time]:not(.large-time-input):not(.cell-data).ghost.h4,
body input[type=datetime]:not(.large-time-input):not(.cell-data).ghost.h4,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).ghost.h4,
body input[type=color]:not(.large-time-input):not(.cell-data).ghost.h4,
body textarea:not(.large-time-input):not(.cell-data).ghost.h4 {
  font-size: var(--h4);
}
body input[type=text]:not(.large-time-input):not(.cell-data).ghost.h5,
body input[type=email]:not(.large-time-input):not(.cell-data).ghost.h5,
body input[type=url]:not(.large-time-input):not(.cell-data).ghost.h5,
body input[type=password]:not(.large-time-input):not(.cell-data).ghost.h5,
body input[type=search]:not(.large-time-input):not(.cell-data).ghost.h5,
body input[type=number]:not(.large-time-input):not(.cell-data).ghost.h5,
body input[type=tel]:not(.large-time-input):not(.cell-data).ghost.h5,
body input[type=range]:not(.large-time-input):not(.cell-data).ghost.h5,
body input[type=date]:not(.large-time-input):not(.cell-data).ghost.h5,
body input[type=month]:not(.large-time-input):not(.cell-data).ghost.h5,
body input[type=week]:not(.large-time-input):not(.cell-data).ghost.h5,
body input[type=time]:not(.large-time-input):not(.cell-data).ghost.h5,
body input[type=datetime]:not(.large-time-input):not(.cell-data).ghost.h5,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).ghost.h5,
body input[type=color]:not(.large-time-input):not(.cell-data).ghost.h5,
body textarea:not(.large-time-input):not(.cell-data).ghost.h5 {
  font-size: var(--h5);
}
body input[type=text]:not(.large-time-input):not(.cell-data).ghost.h6,
body input[type=email]:not(.large-time-input):not(.cell-data).ghost.h6,
body input[type=url]:not(.large-time-input):not(.cell-data).ghost.h6,
body input[type=password]:not(.large-time-input):not(.cell-data).ghost.h6,
body input[type=search]:not(.large-time-input):not(.cell-data).ghost.h6,
body input[type=number]:not(.large-time-input):not(.cell-data).ghost.h6,
body input[type=tel]:not(.large-time-input):not(.cell-data).ghost.h6,
body input[type=range]:not(.large-time-input):not(.cell-data).ghost.h6,
body input[type=date]:not(.large-time-input):not(.cell-data).ghost.h6,
body input[type=month]:not(.large-time-input):not(.cell-data).ghost.h6,
body input[type=week]:not(.large-time-input):not(.cell-data).ghost.h6,
body input[type=time]:not(.large-time-input):not(.cell-data).ghost.h6,
body input[type=datetime]:not(.large-time-input):not(.cell-data).ghost.h6,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).ghost.h6,
body input[type=color]:not(.large-time-input):not(.cell-data).ghost.h6,
body textarea:not(.large-time-input):not(.cell-data).ghost.h6 {
  font-size: var(--h6);
}
body input[type=text]:not(.large-time-input):not(.cell-data).ghost.h6.fz,
body input[type=email]:not(.large-time-input):not(.cell-data).ghost.h6.fz,
body input[type=url]:not(.large-time-input):not(.cell-data).ghost.h6.fz,
body input[type=password]:not(.large-time-input):not(.cell-data).ghost.h6.fz,
body input[type=search]:not(.large-time-input):not(.cell-data).ghost.h6.fz,
body input[type=number]:not(.large-time-input):not(.cell-data).ghost.h6.fz,
body input[type=tel]:not(.large-time-input):not(.cell-data).ghost.h6.fz,
body input[type=range]:not(.large-time-input):not(.cell-data).ghost.h6.fz,
body input[type=date]:not(.large-time-input):not(.cell-data).ghost.h6.fz,
body input[type=month]:not(.large-time-input):not(.cell-data).ghost.h6.fz,
body input[type=week]:not(.large-time-input):not(.cell-data).ghost.h6.fz,
body input[type=time]:not(.large-time-input):not(.cell-data).ghost.h6.fz,
body input[type=datetime]:not(.large-time-input):not(.cell-data).ghost.h6.fz,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).ghost.h6.fz,
body input[type=color]:not(.large-time-input):not(.cell-data).ghost.h6.fz,
body textarea:not(.large-time-input):not(.cell-data).ghost.h6.fz {
  font-size: var(--fz);
}
body input[type=text]:not(.large-time-input):not(.cell-data).fit,
body input[type=email]:not(.large-time-input):not(.cell-data).fit,
body input[type=url]:not(.large-time-input):not(.cell-data).fit,
body input[type=password]:not(.large-time-input):not(.cell-data).fit,
body input[type=search]:not(.large-time-input):not(.cell-data).fit,
body input[type=number]:not(.large-time-input):not(.cell-data).fit,
body input[type=tel]:not(.large-time-input):not(.cell-data).fit,
body input[type=range]:not(.large-time-input):not(.cell-data).fit,
body input[type=date]:not(.large-time-input):not(.cell-data).fit,
body input[type=month]:not(.large-time-input):not(.cell-data).fit,
body input[type=week]:not(.large-time-input):not(.cell-data).fit,
body input[type=time]:not(.large-time-input):not(.cell-data).fit,
body input[type=datetime]:not(.large-time-input):not(.cell-data).fit,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).fit,
body input[type=color]:not(.large-time-input):not(.cell-data).fit,
body textarea:not(.large-time-input):not(.cell-data).fit {
  width: fit-content;
}
body input[type=text]:not(.large-time-input):not(.cell-data).fit.time-mask,
body input[type=email]:not(.large-time-input):not(.cell-data).fit.time-mask,
body input[type=url]:not(.large-time-input):not(.cell-data).fit.time-mask,
body input[type=password]:not(.large-time-input):not(.cell-data).fit.time-mask,
body input[type=search]:not(.large-time-input):not(.cell-data).fit.time-mask,
body input[type=number]:not(.large-time-input):not(.cell-data).fit.time-mask,
body input[type=tel]:not(.large-time-input):not(.cell-data).fit.time-mask,
body input[type=range]:not(.large-time-input):not(.cell-data).fit.time-mask,
body input[type=date]:not(.large-time-input):not(.cell-data).fit.time-mask,
body input[type=month]:not(.large-time-input):not(.cell-data).fit.time-mask,
body input[type=week]:not(.large-time-input):not(.cell-data).fit.time-mask,
body input[type=time]:not(.large-time-input):not(.cell-data).fit.time-mask,
body input[type=datetime]:not(.large-time-input):not(.cell-data).fit.time-mask,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).fit.time-mask,
body input[type=color]:not(.large-time-input):not(.cell-data).fit.time-mask,
body textarea:not(.large-time-input):not(.cell-data).fit.time-mask {
  width: var(--time-input);
  padding: 0;
  text-align: center;
}
body input[type=text]:not(.large-time-input):not(.cell-data).fit.date-input,
body input[type=email]:not(.large-time-input):not(.cell-data).fit.date-input,
body input[type=url]:not(.large-time-input):not(.cell-data).fit.date-input,
body input[type=password]:not(.large-time-input):not(.cell-data).fit.date-input,
body input[type=search]:not(.large-time-input):not(.cell-data).fit.date-input,
body input[type=number]:not(.large-time-input):not(.cell-data).fit.date-input,
body input[type=tel]:not(.large-time-input):not(.cell-data).fit.date-input,
body input[type=range]:not(.large-time-input):not(.cell-data).fit.date-input,
body input[type=date]:not(.large-time-input):not(.cell-data).fit.date-input,
body input[type=month]:not(.large-time-input):not(.cell-data).fit.date-input,
body input[type=week]:not(.large-time-input):not(.cell-data).fit.date-input,
body input[type=time]:not(.large-time-input):not(.cell-data).fit.date-input,
body input[type=datetime]:not(.large-time-input):not(.cell-data).fit.date-input,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).fit.date-input,
body input[type=color]:not(.large-time-input):not(.cell-data).fit.date-input,
body textarea:not(.large-time-input):not(.cell-data).fit.date-input {
  width: var(--date-input);
}
body input[type=text]:not(.large-time-input):not(.cell-data).grow,
body input[type=email]:not(.large-time-input):not(.cell-data).grow,
body input[type=url]:not(.large-time-input):not(.cell-data).grow,
body input[type=password]:not(.large-time-input):not(.cell-data).grow,
body input[type=search]:not(.large-time-input):not(.cell-data).grow,
body input[type=number]:not(.large-time-input):not(.cell-data).grow,
body input[type=tel]:not(.large-time-input):not(.cell-data).grow,
body input[type=range]:not(.large-time-input):not(.cell-data).grow,
body input[type=date]:not(.large-time-input):not(.cell-data).grow,
body input[type=month]:not(.large-time-input):not(.cell-data).grow,
body input[type=week]:not(.large-time-input):not(.cell-data).grow,
body input[type=time]:not(.large-time-input):not(.cell-data).grow,
body input[type=datetime]:not(.large-time-input):not(.cell-data).grow,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).grow,
body input[type=color]:not(.large-time-input):not(.cell-data).grow,
body textarea:not(.large-time-input):not(.cell-data).grow {
  width: 0;
  flex-grow: 1;
}
body input[type=text]:not(.large-time-input):not(.cell-data).select-input,
body input[type=email]:not(.large-time-input):not(.cell-data).select-input,
body input[type=url]:not(.large-time-input):not(.cell-data).select-input,
body input[type=password]:not(.large-time-input):not(.cell-data).select-input,
body input[type=search]:not(.large-time-input):not(.cell-data).select-input,
body input[type=number]:not(.large-time-input):not(.cell-data).select-input,
body input[type=tel]:not(.large-time-input):not(.cell-data).select-input,
body input[type=range]:not(.large-time-input):not(.cell-data).select-input,
body input[type=date]:not(.large-time-input):not(.cell-data).select-input,
body input[type=month]:not(.large-time-input):not(.cell-data).select-input,
body input[type=week]:not(.large-time-input):not(.cell-data).select-input,
body input[type=time]:not(.large-time-input):not(.cell-data).select-input,
body input[type=datetime]:not(.large-time-input):not(.cell-data).select-input,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).select-input,
body input[type=color]:not(.large-time-input):not(.cell-data).select-input,
body textarea:not(.large-time-input):not(.cell-data).select-input {
  cursor: pointer;
}
body input[type=text]:not(.large-time-input):not(.cell-data)::placeholder,
body input[type=email]:not(.large-time-input):not(.cell-data)::placeholder,
body input[type=url]:not(.large-time-input):not(.cell-data)::placeholder,
body input[type=password]:not(.large-time-input):not(.cell-data)::placeholder,
body input[type=search]:not(.large-time-input):not(.cell-data)::placeholder,
body input[type=number]:not(.large-time-input):not(.cell-data)::placeholder,
body input[type=tel]:not(.large-time-input):not(.cell-data)::placeholder,
body input[type=range]:not(.large-time-input):not(.cell-data)::placeholder,
body input[type=date]:not(.large-time-input):not(.cell-data)::placeholder,
body input[type=month]:not(.large-time-input):not(.cell-data)::placeholder,
body input[type=week]:not(.large-time-input):not(.cell-data)::placeholder,
body input[type=time]:not(.large-time-input):not(.cell-data)::placeholder,
body input[type=datetime]:not(.large-time-input):not(.cell-data)::placeholder,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data)::placeholder,
body input[type=color]:not(.large-time-input):not(.cell-data)::placeholder,
body textarea:not(.large-time-input):not(.cell-data)::placeholder {
  color: var(--text-gray);
}
body input[type=text]:not(.large-time-input):not(.cell-data).no-border,
body input[type=email]:not(.large-time-input):not(.cell-data).no-border,
body input[type=url]:not(.large-time-input):not(.cell-data).no-border,
body input[type=password]:not(.large-time-input):not(.cell-data).no-border,
body input[type=search]:not(.large-time-input):not(.cell-data).no-border,
body input[type=number]:not(.large-time-input):not(.cell-data).no-border,
body input[type=tel]:not(.large-time-input):not(.cell-data).no-border,
body input[type=range]:not(.large-time-input):not(.cell-data).no-border,
body input[type=date]:not(.large-time-input):not(.cell-data).no-border,
body input[type=month]:not(.large-time-input):not(.cell-data).no-border,
body input[type=week]:not(.large-time-input):not(.cell-data).no-border,
body input[type=time]:not(.large-time-input):not(.cell-data).no-border,
body input[type=datetime]:not(.large-time-input):not(.cell-data).no-border,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).no-border,
body input[type=color]:not(.large-time-input):not(.cell-data).no-border,
body textarea:not(.large-time-input):not(.cell-data).no-border {
  padding: 0;
  border: none;
}
body input[type=text]:not(.large-time-input):not(.cell-data):not(.no-style):focus,
body input[type=email]:not(.large-time-input):not(.cell-data):not(.no-style):focus,
body input[type=url]:not(.large-time-input):not(.cell-data):not(.no-style):focus,
body input[type=password]:not(.large-time-input):not(.cell-data):not(.no-style):focus,
body input[type=search]:not(.large-time-input):not(.cell-data):not(.no-style):focus,
body input[type=number]:not(.large-time-input):not(.cell-data):not(.no-style):focus,
body input[type=tel]:not(.large-time-input):not(.cell-data):not(.no-style):focus,
body input[type=range]:not(.large-time-input):not(.cell-data):not(.no-style):focus,
body input[type=date]:not(.large-time-input):not(.cell-data):not(.no-style):focus,
body input[type=month]:not(.large-time-input):not(.cell-data):not(.no-style):focus,
body input[type=week]:not(.large-time-input):not(.cell-data):not(.no-style):focus,
body input[type=time]:not(.large-time-input):not(.cell-data):not(.no-style):focus,
body input[type=datetime]:not(.large-time-input):not(.cell-data):not(.no-style):focus,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data):not(.no-style):focus,
body input[type=color]:not(.large-time-input):not(.cell-data):not(.no-style):focus,
body textarea:not(.large-time-input):not(.cell-data):not(.no-style):focus {
  color: var(--text);
}
body input[type=text]:not(.large-time-input):not(.cell-data):not(.no-style):not(.no-border):focus,
body input[type=email]:not(.large-time-input):not(.cell-data):not(.no-style):not(.no-border):focus,
body input[type=url]:not(.large-time-input):not(.cell-data):not(.no-style):not(.no-border):focus,
body input[type=password]:not(.large-time-input):not(.cell-data):not(.no-style):not(.no-border):focus,
body input[type=search]:not(.large-time-input):not(.cell-data):not(.no-style):not(.no-border):focus,
body input[type=number]:not(.large-time-input):not(.cell-data):not(.no-style):not(.no-border):focus,
body input[type=tel]:not(.large-time-input):not(.cell-data):not(.no-style):not(.no-border):focus,
body input[type=range]:not(.large-time-input):not(.cell-data):not(.no-style):not(.no-border):focus,
body input[type=date]:not(.large-time-input):not(.cell-data):not(.no-style):not(.no-border):focus,
body input[type=month]:not(.large-time-input):not(.cell-data):not(.no-style):not(.no-border):focus,
body input[type=week]:not(.large-time-input):not(.cell-data):not(.no-style):not(.no-border):focus,
body input[type=time]:not(.large-time-input):not(.cell-data):not(.no-style):not(.no-border):focus,
body input[type=datetime]:not(.large-time-input):not(.cell-data):not(.no-style):not(.no-border):focus,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data):not(.no-style):not(.no-border):focus,
body input[type=color]:not(.large-time-input):not(.cell-data):not(.no-style):not(.no-border):focus,
body textarea:not(.large-time-input):not(.cell-data):not(.no-style):not(.no-border):focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px var(--focus);
}
body input[type=text]:not(.large-time-input):not(.cell-data).large,
body input[type=email]:not(.large-time-input):not(.cell-data).large,
body input[type=url]:not(.large-time-input):not(.cell-data).large,
body input[type=password]:not(.large-time-input):not(.cell-data).large,
body input[type=search]:not(.large-time-input):not(.cell-data).large,
body input[type=number]:not(.large-time-input):not(.cell-data).large,
body input[type=tel]:not(.large-time-input):not(.cell-data).large,
body input[type=range]:not(.large-time-input):not(.cell-data).large,
body input[type=date]:not(.large-time-input):not(.cell-data).large,
body input[type=month]:not(.large-time-input):not(.cell-data).large,
body input[type=week]:not(.large-time-input):not(.cell-data).large,
body input[type=time]:not(.large-time-input):not(.cell-data).large,
body input[type=datetime]:not(.large-time-input):not(.cell-data).large,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).large,
body input[type=color]:not(.large-time-input):not(.cell-data).large,
body textarea:not(.large-time-input):not(.cell-data).large {
  --field: var(--field-large);
}
body input[type=text]:not(.large-time-input):not(.cell-data).big,
body input[type=email]:not(.large-time-input):not(.cell-data).big,
body input[type=url]:not(.large-time-input):not(.cell-data).big,
body input[type=password]:not(.large-time-input):not(.cell-data).big,
body input[type=search]:not(.large-time-input):not(.cell-data).big,
body input[type=number]:not(.large-time-input):not(.cell-data).big,
body input[type=tel]:not(.large-time-input):not(.cell-data).big,
body input[type=range]:not(.large-time-input):not(.cell-data).big,
body input[type=date]:not(.large-time-input):not(.cell-data).big,
body input[type=month]:not(.large-time-input):not(.cell-data).big,
body input[type=week]:not(.large-time-input):not(.cell-data).big,
body input[type=time]:not(.large-time-input):not(.cell-data).big,
body input[type=datetime]:not(.large-time-input):not(.cell-data).big,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).big,
body input[type=color]:not(.large-time-input):not(.cell-data).big,
body textarea:not(.large-time-input):not(.cell-data).big {
  --field: var(--field-big);
}
body input[type=text]:not(.large-time-input):not(.cell-data).medium,
body input[type=email]:not(.large-time-input):not(.cell-data).medium,
body input[type=url]:not(.large-time-input):not(.cell-data).medium,
body input[type=password]:not(.large-time-input):not(.cell-data).medium,
body input[type=search]:not(.large-time-input):not(.cell-data).medium,
body input[type=number]:not(.large-time-input):not(.cell-data).medium,
body input[type=tel]:not(.large-time-input):not(.cell-data).medium,
body input[type=range]:not(.large-time-input):not(.cell-data).medium,
body input[type=date]:not(.large-time-input):not(.cell-data).medium,
body input[type=month]:not(.large-time-input):not(.cell-data).medium,
body input[type=week]:not(.large-time-input):not(.cell-data).medium,
body input[type=time]:not(.large-time-input):not(.cell-data).medium,
body input[type=datetime]:not(.large-time-input):not(.cell-data).medium,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).medium,
body input[type=color]:not(.large-time-input):not(.cell-data).medium,
body textarea:not(.large-time-input):not(.cell-data).medium {
  --field: var(--field-medium);
}
body input[type=text]:not(.large-time-input):not(.cell-data).small,
body input[type=email]:not(.large-time-input):not(.cell-data).small,
body input[type=url]:not(.large-time-input):not(.cell-data).small,
body input[type=password]:not(.large-time-input):not(.cell-data).small,
body input[type=search]:not(.large-time-input):not(.cell-data).small,
body input[type=number]:not(.large-time-input):not(.cell-data).small,
body input[type=tel]:not(.large-time-input):not(.cell-data).small,
body input[type=range]:not(.large-time-input):not(.cell-data).small,
body input[type=date]:not(.large-time-input):not(.cell-data).small,
body input[type=month]:not(.large-time-input):not(.cell-data).small,
body input[type=week]:not(.large-time-input):not(.cell-data).small,
body input[type=time]:not(.large-time-input):not(.cell-data).small,
body input[type=datetime]:not(.large-time-input):not(.cell-data).small,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).small,
body input[type=color]:not(.large-time-input):not(.cell-data).small,
body textarea:not(.large-time-input):not(.cell-data).small {
  --field: var(--field-small);
}
body input[type=text]:not(.large-time-input):not(.cell-data).mini,
body input[type=email]:not(.large-time-input):not(.cell-data).mini,
body input[type=url]:not(.large-time-input):not(.cell-data).mini,
body input[type=password]:not(.large-time-input):not(.cell-data).mini,
body input[type=search]:not(.large-time-input):not(.cell-data).mini,
body input[type=number]:not(.large-time-input):not(.cell-data).mini,
body input[type=tel]:not(.large-time-input):not(.cell-data).mini,
body input[type=range]:not(.large-time-input):not(.cell-data).mini,
body input[type=date]:not(.large-time-input):not(.cell-data).mini,
body input[type=month]:not(.large-time-input):not(.cell-data).mini,
body input[type=week]:not(.large-time-input):not(.cell-data).mini,
body input[type=time]:not(.large-time-input):not(.cell-data).mini,
body input[type=datetime]:not(.large-time-input):not(.cell-data).mini,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).mini,
body input[type=color]:not(.large-time-input):not(.cell-data).mini,
body textarea:not(.large-time-input):not(.cell-data).mini {
  --field: var(--field-mini);
}
body input[type=text]:not(.large-time-input):not(.cell-data).error,
body input[type=email]:not(.large-time-input):not(.cell-data).error,
body input[type=url]:not(.large-time-input):not(.cell-data).error,
body input[type=password]:not(.large-time-input):not(.cell-data).error,
body input[type=search]:not(.large-time-input):not(.cell-data).error,
body input[type=number]:not(.large-time-input):not(.cell-data).error,
body input[type=tel]:not(.large-time-input):not(.cell-data).error,
body input[type=range]:not(.large-time-input):not(.cell-data).error,
body input[type=date]:not(.large-time-input):not(.cell-data).error,
body input[type=month]:not(.large-time-input):not(.cell-data).error,
body input[type=week]:not(.large-time-input):not(.cell-data).error,
body input[type=time]:not(.large-time-input):not(.cell-data).error,
body input[type=datetime]:not(.large-time-input):not(.cell-data).error,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).error,
body input[type=color]:not(.large-time-input):not(.cell-data).error,
body textarea:not(.large-time-input):not(.cell-data).error {
  border-color: var(--red-focus) !important;
  box-shadow: 0 0 0 3px var(--red-focus) !important;
}
body input[type=text]:not(.large-time-input):not(.cell-data):disabled,
body input[type=email]:not(.large-time-input):not(.cell-data):disabled,
body input[type=url]:not(.large-time-input):not(.cell-data):disabled,
body input[type=password]:not(.large-time-input):not(.cell-data):disabled,
body input[type=search]:not(.large-time-input):not(.cell-data):disabled,
body input[type=number]:not(.large-time-input):not(.cell-data):disabled,
body input[type=tel]:not(.large-time-input):not(.cell-data):disabled,
body input[type=range]:not(.large-time-input):not(.cell-data):disabled,
body input[type=date]:not(.large-time-input):not(.cell-data):disabled,
body input[type=month]:not(.large-time-input):not(.cell-data):disabled,
body input[type=week]:not(.large-time-input):not(.cell-data):disabled,
body input[type=time]:not(.large-time-input):not(.cell-data):disabled,
body input[type=datetime]:not(.large-time-input):not(.cell-data):disabled,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data):disabled,
body input[type=color]:not(.large-time-input):not(.cell-data):disabled,
body textarea:not(.large-time-input):not(.cell-data):disabled {
  border-color: transparent;
  background: var(--border);
  color: var(--text-gray);
}
body input[type=text]:not(.large-time-input):not(.cell-data).no-style,
body input[type=email]:not(.large-time-input):not(.cell-data).no-style,
body input[type=url]:not(.large-time-input):not(.cell-data).no-style,
body input[type=password]:not(.large-time-input):not(.cell-data).no-style,
body input[type=search]:not(.large-time-input):not(.cell-data).no-style,
body input[type=number]:not(.large-time-input):not(.cell-data).no-style,
body input[type=tel]:not(.large-time-input):not(.cell-data).no-style,
body input[type=range]:not(.large-time-input):not(.cell-data).no-style,
body input[type=date]:not(.large-time-input):not(.cell-data).no-style,
body input[type=month]:not(.large-time-input):not(.cell-data).no-style,
body input[type=week]:not(.large-time-input):not(.cell-data).no-style,
body input[type=time]:not(.large-time-input):not(.cell-data).no-style,
body input[type=datetime]:not(.large-time-input):not(.cell-data).no-style,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).no-style,
body input[type=color]:not(.large-time-input):not(.cell-data).no-style,
body textarea:not(.large-time-input):not(.cell-data).no-style {
  background: none;
  box-shadow: none !important;
  border: none;
}
body input[type=text]:not(.large-time-input):not(.cell-data).code-input,
body input[type=email]:not(.large-time-input):not(.cell-data).code-input,
body input[type=url]:not(.large-time-input):not(.cell-data).code-input,
body input[type=password]:not(.large-time-input):not(.cell-data).code-input,
body input[type=search]:not(.large-time-input):not(.cell-data).code-input,
body input[type=number]:not(.large-time-input):not(.cell-data).code-input,
body input[type=tel]:not(.large-time-input):not(.cell-data).code-input,
body input[type=range]:not(.large-time-input):not(.cell-data).code-input,
body input[type=date]:not(.large-time-input):not(.cell-data).code-input,
body input[type=month]:not(.large-time-input):not(.cell-data).code-input,
body input[type=week]:not(.large-time-input):not(.cell-data).code-input,
body input[type=time]:not(.large-time-input):not(.cell-data).code-input,
body input[type=datetime]:not(.large-time-input):not(.cell-data).code-input,
body input[type=datetime-local]:not(.large-time-input):not(.cell-data).code-input,
body input[type=color]:not(.large-time-input):not(.cell-data).code-input,
body textarea:not(.large-time-input):not(.cell-data).code-input {
  padding: 0;
  width: 7rem;
  height: 8rem;
  text-align: center;
  font-size: 4rem;
  background: none;
  border: 1px solid var(--border);
  caret-color: transparent;
}
body .code-inputs {
  display: flex;
}
body .code-inputs .code-input:not(:last-child) {
  margin-right: 1rem;
}
body .large-time-input {
  width: 100%;
  text-align: center;
  font-family: var(--mono);
  border: none;
  padding: 0;
  transition: 0.2s;
  font-size: 7rem;
  font-weight: 700;
  color: var(--text);
}
body .large-time-input:focus {
  color: var(--text);
}
body .large-time-input.error {
  color: var(--red);
}
body .tags-input {
  border: 1px solid var(--border);
  min-height: var(--field);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.5rem;
  position: relative;
  border-radius: var(--rad);
}
body .tags-input > input:not(.large-time-input):not(.cell-data) {
  padding: 0 calc(var(--field) / 2.5 - 0.5rem);
  height: calc(var(--field) - 2px - 1rem);
  align-self: stretch;
  border: none;
  box-shadow: none !important;
  width: 16rem;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}
body .tags-input .tag {
  position: relative;
  z-index: 2;
  margin: 0.3rem;
}
body .tags-input label {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
body .progress .progress-label {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}
body .progress .line {
  background: var(--gray-bg);
  height: 4px;
  display: flex;
  border-radius: 2px;
  overflow: hidden;
}
body .progress .line.green {
  --theme: var(--green);
}
body .progress .line.red {
  --theme: var(--red);
}
body .progress .line.orange {
  --theme: var(--orange);
}
body .progress .line span {
  background: var(--theme);
  transition: 0.2s;
}
body textarea:not(.large-time-input):not(.cell-data) {
  height: auto;
  padding-top: calc((var(--field) - var(--fz)) / 2.8) !important;
  padding-bottom: calc((var(--field) - var(--fz)) / 2.8) !important;
  resize: none;
}
body .toggler {
  background: var(--border);
  height: var(--field);
  display: flex;
  width: fit-content;
  border-radius: var(--rad);
  padding: 0.4rem;
}
body .toggler .item {
  padding: 0 calc(var(--field) / 3);
  display: flex;
  align-items: center;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
  color: var(--text-gray);
  border-radius: var(--rad);
}
body .toggler .item:hover {
  color: var(--text);
}
body .toggler .item.active {
  background: var(--bg);
  color: var(--text);
}
body .toggler .item span.icon {
  display: flex;
}
body .large-avatar {
  width: calc(var(--field) * 2.5);
  height: calc(var(--field) * 2.5);
  font-size: calc(var(--field));
  background: var(--opacity);
  font-weight: 600;
  color: var(--theme);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  position: relative;
}
body .large-avatar .icon {
  position: absolute;
  right: 5%;
  bottom: 5%;
  font-size: var(--fz);
  height: 2rem;
  width: 2rem;
  background: var(--theme);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 1.2rem;
  box-shadow: 0 0 0 4px var(--bg);
}
body .large-avatar.large {
  --field: var(--field-large);
}
body .large-avatar.big {
  --field: var(--field-big);
}
body .large-avatar.medium {
  --field: var(--field-medium);
}
body .large-avatar.small {
  --field: var(--field-small);
}
body .large-avatar.mini {
  --field: var(--field-mini);
}
body .avatar {
  width: var(--field);
  height: var(--field);
  border-radius: var(--rad);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--opacity);
  color: var(--theme);
  flex-shrink: 0;
  background-position: center;
  background-size: cover;
  font-weight: 600;
  position: relative;
}
body .avatar .close {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-s);
  background: var(--red);
  color: #fff;
  border-radius: 100%;
  font-size: 0.8rem;
  width: 1.6rem;
  height: 1.6rem;
  transform: translate(30%, -30%);
  opacity: 0;
  cursor: pointer;
  transition: 0.2s;
}
body .avatar:hover .close {
  opacity: 1;
}
body .avatar:after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  height: 14px;
  width: 14px;
  opacity: 0;
  border-radius: 100%;
  border: 2px solid var(--bg);
}
body .avatar.online:after {
  opacity: 1;
  background: var(--green);
}
body .avatar.new:after {
  opacity: 1;
  background: var(--red);
}
body .avatar.large {
  --field: var(--field-large);
}
body .avatar.big {
  --field: var(--field-big);
}
body .avatar.medium {
  --field: var(--field-medium);
}
body .avatar.small {
  --field: var(--field-small);
}
body .avatar.mini {
  --field: var(--field-mini);
}
body .avatar.red {
  --theme: var(--red);
  --opacity: var(--red-opacity);
}
body .avatar.orange {
  --theme: var(--orange);
  --opacity: var(--orange-opacity);
}
body .avatar.green {
  --theme: var(--green);
  --opacity: var(--green-opacity);
}
body .avatar.blue {
  --theme: var(--blue);
  --opacity: var(--blue-opacity);
}
body .params .item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
body .params .item .title {
  flex-shrink: 0;
  padding-right: 2rem;
  color: var(--text-gray);
  font-weight: 500;
}
body .params .item .value {
  text-align: right;
}
body .params .item:not(:last-child) {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
body .sep-line {
  background: var(--gray-bg);
  height: 1rem;
}
body .input-wrapper {
  position: relative;
}
body .input-wrapper.full {
  width: 100%;
}
body .input-wrapper > .icon, body .input-wrapper > .clear-input, body .input-wrapper > .arrow, body .input-wrapper > .fixed-label {
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--field);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
}
body .input-wrapper > .icon.theme, body .input-wrapper > .clear-input.theme, body .input-wrapper > .arrow.theme, body .input-wrapper > .fixed-label.theme {
  color: var(--theme);
}
body .input-wrapper > .icon.bold:before, body .input-wrapper > .clear-input.bold:before, body .input-wrapper > .arrow.bold:before, body .input-wrapper > .fixed-label.bold:before {
  font-weight: 600;
}
body .input-wrapper > .icon.large, body .input-wrapper > .clear-input.large, body .input-wrapper > .arrow.large, body .input-wrapper > .fixed-label.large {
  --field: var(--field-large);
}
body .input-wrapper > .icon.big, body .input-wrapper > .clear-input.big, body .input-wrapper > .arrow.big, body .input-wrapper > .fixed-label.big {
  --field: var(--field-big);
}
body .input-wrapper > .icon.medium, body .input-wrapper > .clear-input.medium, body .input-wrapper > .arrow.medium, body .input-wrapper > .fixed-label.medium {
  --field: var(--field-medium);
}
body .input-wrapper > .icon.small, body .input-wrapper > .clear-input.small, body .input-wrapper > .arrow.small, body .input-wrapper > .fixed-label.small {
  --field: var(--field-small);
}
body .input-wrapper > .icon.mini, body .input-wrapper > .clear-input.mini, body .input-wrapper > .arrow.mini, body .input-wrapper > .fixed-label.mini {
  --field: var(--field-mini);
}
body .input-wrapper > .icon.icon, body .input-wrapper > .clear-input.icon, body .input-wrapper > .arrow.icon, body .input-wrapper > .fixed-label.icon {
  pointer-events: none;
  left: 0;
}
body .input-wrapper > .icon.arrow, body .input-wrapper > .clear-input.arrow, body .input-wrapper > .arrow.arrow, body .input-wrapper > .fixed-label.arrow {
  pointer-events: none;
  right: 0;
}
body .input-wrapper > .icon.fixed-label, body .input-wrapper > .clear-input.fixed-label, body .input-wrapper > .arrow.fixed-label, body .input-wrapper > .fixed-label.fixed-label {
  pointer-events: none;
  right: 0;
}
body .input-wrapper > .icon.clear-input, body .input-wrapper > .clear-input.clear-input, body .input-wrapper > .arrow.clear-input, body .input-wrapper > .fixed-label.clear-input {
  transition: 0.2s;
  right: 0;
  opacity: 0;
  cursor: pointer;
}
body .input-wrapper > .icon.clear-input:hover, body .input-wrapper > .clear-input.clear-input:hover, body .input-wrapper > .arrow.clear-input:hover, body .input-wrapper > .fixed-label.clear-input:hover {
  color: var(--red);
}
body .input-wrapper > .icon ~ input {
  padding-left: var(--field) !important;
}
body .input-wrapper > .clear-input ~ input {
  padding-right: var(--field) !important;
}
body .input-wrapper > .arrow ~ input {
  padding-right: var(--field) !important;
}
body .input-wrapper > .fixed-label ~ input {
  padding-right: var(--field) !important;
}
body .input-wrapper .inline {
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc((var(--field) - var(--field-medium)) / 2);
  align-items: center;
}
body .input-wrapper:hover > .clear-input {
  opacity: 1 !important;
}
body .input-wrapper .dropdown-menu {
  width: 100%;
}
body .input-wrapper.with-btns {
  display: flex;
}
body .input-wrapper.with-btns input {
  margin: 0 1rem;
}
body .input-wrapper.with-checkbox {
  display: flex;
  align-items: center;
}
body .input-wrapper.with-checkbox .checkbox {
  flex-shrink: 0;
  margin-right: 1.5rem;
}
body .input-wrapper.with-checkbox label {
  cursor: pointer;
}
body .inputs-line {
  display: flex;
}
body .inputs-line > .line {
  margin: -1rem;
  width: calc(100% + 2rem);
  display: flex;
  flex-wrap: wrap;
}
body .inputs-line > .line > * {
  width: calc(100% / var(--inputs-line) - 2rem);
  margin: 1rem;
}
body .inputs-line > .line > *.small {
  width: calc(100% / var(--inputs-line) * 0.5 - 2rem);
}
body .inputs-line > .line > *.large {
  width: calc(100% / var(--inputs-line) * 1.5 - 2rem);
}
body .inputs-line > .line > *.full {
  width: calc(100% - 2rem);
}
body .inputs-line.center .line {
  justify-content: center;
}
body .inputs-line.left .line {
  justify-content: flex-start;
}
body .inputs-line.right .line {
  justify-content: flex-end;
}
body .inputs-line.start .line {
  align-items: flex-start;
}
body .inputs-line.end .line {
  align-items: flex-end;
}
body .inputs-line.start .line {
  align-items: flex-start;
}
body .ui-datepicker {
  border: 1px solid var(--border);
  border-radius: var(--rad-md);
  background: var(--bg);
  box-shadow: var(--shadow-s);
  padding: var(--padding);
  display: none;
  z-index: 60 !important;
}
body .ui-datepicker.ui-datepicker-inline {
  padding: 0;
  box-shadow: none;
  width: 100%;
  border: none;
  z-index: 1;
}
body .ui-datepicker .ui-datepicker-header {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body .ui-datepicker .ui-datepicker-header .ui-datepicker-next {
  order: 1;
}
body .ui-datepicker .ui-datepicker-header .ui-datepicker-title {
  font-size: 1.8rem;
  font-weight: 600;
}
body .ui-datepicker table {
  margin: 0;
}
body .ui-datepicker table th {
  font-weight: 500;
  color: var(--text-gray);
}
body .ui-datepicker table td a, body .ui-datepicker table td span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.8rem;
  height: 3.8rem;
  line-height: 1;
  border-radius: var(--rad-sm);
  font-weight: 500;
}
body .ui-datepicker table td a:hover {
  background: var(--opacity);
}
body .ui-datepicker table td a.ui-state-active {
  background: var(--theme);
  color: #fff !important;
}
body .ui-datepicker table td.ui-datepicker-other-month span, body .ui-datepicker table td.ui-datepicker-other-month a {
  color: var(--text);
}
body .count,
body [data-count]:not([data-count="0"]):after {
  font-size: calc(var(--fz) * 0.8);
  font-weight: 600;
  background: var(--red);
  color: #fff;
  line-height: 2rem;
  padding: 0 0.4rem;
  min-width: 2rem;
  text-align: center;
  border-radius: 0.9rem;
  flex-shrink: 0;
  width: fit-content;
  transition: 0.2s;
}
body .count.hidden {
  opacity: 0;
}
body [data-count]:not([data-count="0"]) {
  position: relative;
}
body [data-count]:not([data-count="0"]):after {
  content: attr(data-count);
  position: absolute;
  top: -1rem;
  right: 0;
  transform: translateX(50%);
}
body .checkbox input {
  display: none;
}
body .checkbox label {
  height: var(--checkbox);
  width: var(--checkbox);
  background: var(--gray-bg);
  border-radius: var(--rad-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: 0.3s;
  cursor: pointer;
  font-size: 1.2rem;
}
body .checkbox input.error + label {
  box-shadow: 0 0 0 3px var(--red-focus);
  background: var(--red-opacity);
}
body .checkbox input:checked + label {
  background: var(--theme);
  border-color: transparent;
  color: #fff;
}
body .checkbox input:active + label {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px var(--focus);
}
body .dropdown-menu {
  position: absolute;
  padding: 0.6rem 0;
  z-index: 12;
  display: none;
}
body .dropdown-menu .content {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-m);
  border-radius: var(--rad);
  background: var(--bg);
  padding: 0.3rem 0.5rem;
  max-height: 24rem;
  overflow: auto;
}
body .dropdown-menu .content .item {
  padding: 0.8rem calc(var(--field) / 2 - 0.5rem);
  display: flex;
  align-items: center;
  border-radius: var(--rad);
  transition: 0.2s;
  color: var(--text);
  font-weight: 500;
  margin: 0.2rem 0;
}
body .dropdown-menu .content .item span.icon {
  color: var(--text-gray);
  display: flex;
  width: 2.6rem;
}
body .dropdown-menu .content .item:not(.empty) {
  cursor: pointer;
}
body .dropdown-menu .content .item:not(.empty):hover {
  background: var(--gray-bg);
}
body .dropdown-menu .content .item.red {
  --theme: var(--red);
  --light: var(--red-light);
  --gray-bg: var(--red-opacity);
  color: var(--red);
}
body .dropdown-menu .content .item.red span.icon {
  color: var(--red);
}
body .dropdown-menu .content .item.active {
  color: #fff;
  background: var(--theme);
}
body .dropdown-menu .content .item.active span.icon {
  color: var(--text-gray);
}
body .dropdown-menu .content .item.active:hover {
  background: var(--light);
}
body .dropdown-menu .content .item.empty {
  color: var(--text-gray);
}
body .dropdown-menu .content .item.hidden {
  display: none;
}
body .dropdown-menu .content hr {
  margin: 0.5rem calc(var(--field) / 2 - 0.5rem);
}
body .slick-list {
  overflow: hidden;
}
body .slick-list .slick-track {
  display: flex;
}
body .steps {
  font-size: var(--small);
  font-weight: 500;
}
body .steps .step {
  position: relative;
  padding-left: 3.4rem;
}
body .steps .step:not(:last-child) {
  padding-bottom: 2rem;
}
body .steps .step:not(:last-child):before {
  content: "";
  position: absolute;
  left: calc(var(--checkbox) / 2 - 1px);
  top: calc(var(--checkbox) + 0.4rem);
  bottom: 0;
  border-left: 2px dashed var(--border);
}
body .steps .step .icon {
  position: absolute;
  left: 0;
  top: 0.2rem;
  height: var(--checkbox);
  width: var(--checkbox);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--border);
  border-radius: 100%;
  font-size: 1rem;
  color: transparent;
  transition: 0.2s;
}
body .steps .step p {
  color: var(--text-gray);
  font-size: var(--small);
  font-weight: 500;
}
body .steps .step.done .icon {
  background: var(--green);
  color: #fff;
}
body .file-block {
  border: 2px dashed var(--border);
  border-radius: var(--rad);
  width: 100%;
  display: flex;
  cursor: pointer;
  transition: 0.2s;
}
body .file-block:hover {
  border-color: var(--focus);
}
body .file-block .files-line {
  display: flex;
  padding: 2rem;
  width: 100%;
  flex-wrap: wrap;
}
body .file-block .files-line .file-preview {
  width: calc(100% / var(--file-block) - 2rem);
  margin: 1rem;
}
body .file-block .files-line .empty-message {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-weight: 500;
  margin: auto;
}
body .file-block .files-line .empty-message .icon {
  margin-right: 1rem;
}
body .file-block input {
  display: none;
}
body .slick-slider {
  position: relative;
}
body .slick-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
body .blur-icon {
  display: flex;
  width: 4rem;
  height: 4rem;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  align-items: center;
  justify-content: center;
  border-radius: var(--rad);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: 0.2s;
}
body .blur-icon:hover {
  background: var(--theme);
}

@media (max-width: 767px) {
  html {
    font-size: 3vw;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  html {
    font-size: 0.95vw;
  }
}
@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?xw074k");
  src: url("../fonts/icomoon.eot?xw074k#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?xw074k") format("truetype"), url("../fonts/icomoon.woff?xw074k") format("woff"), url("../fonts/icomoon.svg?xw074k#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-]:before,
[class*=" icon-"]:before,
.checkbox label:before,
.menu-item-has-children a:after,
#menu-mobile-menu li a:after {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-full:before {
  content: "\e965";
}

.icon-instagram:before {
  content: "\e900";
}

.icon-vk:before {
  content: "\e964";
}

.icon-view-list:before {
  content: "\e901";
}

.icon-folder-open:before {
  content: "\e902";
}

.icon-upload:before {
  content: "\e903";
}

.icon-folder:before {
  content: "\e904";
}

.icon-download:before {
  content: "\e905";
}

.icon-place:before {
  content: "\e906";
}

.icon-light:before {
  content: "\e907";
}

.icon-dark:before {
  content: "\e908";
}

.icon-arrow-down:before {
  content: "\e909";
}

.icon-arrow-up:before {
  content: "\e90a";
}

.icon-arrow-right:before {
  content: "\e90b";
}

.icon-arrow-left:before {
  content: "\e90c";
}

.icon-up:before {
  content: "\e90d";
}

.icon-login:before {
  content: "\e90e";
}

.icon-left:before {
  content: "\e90f";
}

.icon-right:before,
#menu-mobile-menu li a:after,
.menu-item-has-children ul a:after {
  content: "\e910";
}

.icon-down:before,
.menu-item-has-children > a:after {
  content: "\e911";
}

.icon-drag:before {
  content: "\e912";
}

.icon-bookmark:before {
  content: "\e913";
}

.icon-power:before {
  content: "\e914";
}

.icon-code:before {
  content: "\e915";
}

.icon-chat:before {
  content: "\e916";
}

.icon-history:before {
  content: "\e917";
}

.icon-user:before {
  content: "\e918";
}

.icon-open:before {
  content: "\e919";
}

.icon-error:before {
  content: "\e91a";
}

.icon-dashboard:before {
  content: "\e91b";
}

.icon-like:before {
  content: "\e91c";
}

.icon-event:before {
  content: "\e91d";
}

.icon-help:before {
  content: "\e91e";
}

.icon-internet:before {
  content: "\e91f";
}

.icon-time:before {
  content: "\e920";
}

.icon-lock:before {
  content: "\e921";
}

.icon-fav-solid:before {
  content: "\e922";
}

.icon-fav:before {
  content: "\e923";
}

.icon-document:before {
  content: "\e924";
}

.icon-logout:before {
  content: "\e925";
}

.icon-show:before {
  content: "\e926";
}

.icon-cart:before {
  content: "\e927";
}

.icon-trash:before {
  content: "\e928";
}

.icon-success:before {
  content: "\e929";
}

.icon-warning:before {
  content: "\e92a";
}

.icon-check:before {
  content: "\e92b";
}

.icon-settings:before {
  content: "\e92c";
}

.icon-avatar:before {
  content: "\e92d";
}

.icon-home:before {
  content: "\e92e";
}

.icon-search:before {
  content: "\e92f";
}

.icon-inventory:before {
  content: "\e930";
}

.icon-text:before {
  content: "\e931";
}

.icon-inbox:before {
  content: "\e932";
}

.icon-email:before {
  content: "\e933";
}

.icon-phone:before {
  content: "\e934";
}

.icon-call:before {
  content: "\e935";
}

.icon-notif:before {
  content: "\e936";
}

.icon-move:before {
  content: "\e937";
}

.icon-unfold-more:before {
  content: "\e938";
}

.icon-edit:before {
  content: "\e939";
}

.icon-add:before {
  content: "\e93a";
}

.icon-add-circle:before {
  content: "\e93b";
}

.icon-remove:before {
  content: "\e93c";
}

.icon-remove-circle:before {
  content: "\e93d";
}

.icon-filter:before {
  content: "\e93e";
}

.icon-mic:before {
  content: "\e93f";
}

.icon-attach:before {
  content: "\e940";
}

.icon-emoji:before {
  content: "\e941";
}

.icon-cancel:before {
  content: "\e942";
}

.icon-close:before {
  content: "\e943";
}

.icon-menu:before {
  content: "\e944";
}

.icon-more-h:before {
  content: "\e945";
}

.icon-more-v:before {
  content: "\e946";
}

.icon-send:before {
  content: "\e947";
}

.icon-sync:before {
  content: "\e948";
}

.icon-refresh:before {
  content: "\e949";
}

.icon-person-add:before {
  content: "\e94a";
}

.icon-group:before {
  content: "\e94b";
}

.icon-group-add:before {
  content: "\e94c";
}

.icon-done:before {
  content: "\e94d";
}

.icon-checklist:before {
  content: "\e94e";
}

.icon-checkbox:before {
  content: "\e94f";
}

.icon-list:before {
  content: "\e950";
}

.icon-flag:before {
  content: "\e951";
}

.icon-click:before {
  content: "\e952";
}

.icon-mouse:before {
  content: "\e953";
}

.icon-align-right:before {
  content: "\e954";
}

.icon-underlined:before {
  content: "\e955";
}

.icon-align-center:before {
  content: "\e956";
}

.icon-align-left:before {
  content: "\e957";
}

.icon-through:before {
  content: "\e958";
}

.icon-italic:before {
  content: "\e959";
}

.icon-bold:before {
  content: "\e95a";
}

.icon-table:before {
  content: "\e95b";
}

.icon-view-grid:before {
  content: "\e95c";
}

.icon-verified:before {
  content: "\e95d";
}

.icon-play:before {
  content: "\e95e";
}

.icon-pause:before {
  content: "\e95f";
}

.icon-mic-off:before {
  content: "\e960";
}

.icon-star:before {
  content: "\e961";
}

.icon-star-outline:before {
  content: "\e962";
}

.icon-coin:before {
  content: "\e963";
}

header.site-header {
  position: relative;
  top: 0;
  z-index: 32;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: 0.2s;
}
header.site-header .header-bar {
  border-bottom: 1px solid var(--border);
}
header.site-header .header-bar .wrapper {
  height: var(--header-bar);
  display: flex;
  align-items: center;
}
header.site-header .header-bar .wrapper nav ul {
  display: flex;
}
header.site-header .header-bar .wrapper nav ul li {
  margin-right: 3rem;
}
header.site-header .header-bar .wrapper nav ul li a {
  color: var(--text-gray);
  font-weight: 500;
  font-size: var(--v-small);
  display: flex;
  align-items: center;
}
header.site-header .header-bar .wrapper nav ul li a:hover {
  color: var(--theme);
}
header.site-header .header-bar .wrapper .info {
  display: flex;
  margin-left: auto;
}
header.site-header .header-bar .wrapper .info .item {
  color: var(--text-gray);
  font-weight: 500;
  font-size: var(--v-small);
  display: flex;
  align-items: center;
}
header.site-header .header-bar .wrapper .info .item:before {
  margin-right: 0.5em;
}
header.site-header .header-bar .wrapper .info .item:not(:last-child) {
  margin-right: 3rem;
}
header.site-header .header-bar .wrapper .info a.item:hover {
  color: var(--theme);
}
header.site-header .header-bar .wrapper .social {
  display: flex;
  border-left: 1px solid var(--border);
  align-self: stretch;
  margin-left: 3rem;
}
header.site-header .header-bar .wrapper .social a {
  width: var(--header-bar);
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  color: var(--text-gray);
}
header.site-header .header-bar .wrapper .social a:hover {
  border-color: transparent;
  background: var(--border);
  color: var(--theme);
}
header.site-header .top-header {
  border-bottom: 1px solid var(--border);
}
header.site-header .top-header .wrapper {
  height: var(--top-header);
  display: flex;
  align-items: center;
}
header.site-header .top-header .wrapper > *:not(:last-child) {
  margin-right: 3rem;
}
header.site-header .top-header .wrapper .search-form {
  flex-grow: 1;
  margin-block-end: 0;
}
header.site-header .top-header .wrapper .header-icon {
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme);
  border-radius: var(--rad);
  width: var(--field);
  height: var(--field);
  background: var(--opacity);
  transition: 0.2s;
}
header.site-header .top-header .wrapper .header-icon.gray {
  background: var(--gray-bg);
  color: var(--text-gray);
}
header.site-header .top-header .wrapper .header-icon:hover {
  background: var(--theme);
  color: #fff;
}
header.site-header .top-header .wrapper .cart-btn {
  border-width: 0 1px;
  display: flex;
  align-items: center;
  color: var(--text);
}
header.site-header .top-header .wrapper .cart-btn:hover .header-icon {
  background: var(--theme);
  color: #fff;
}
header.site-header .top-header .wrapper .cart-btn .header-icon {
  margin-right: 1.5rem;
}
header.site-header .top-header .wrapper .cart-btn .text {
  line-height: 1;
}
header.site-header .top-header .wrapper .cart-btn .text .title {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3em;
}
header.site-header .top-header .wrapper .cart-btn .text .price {
  font-weight: 500;
  color: var(--text-gray);
  font-size: var(--small);
}
header.site-header .bottom-header .wrapper {
  display: flex;
  height: var(--bottom-header);
  border-left: 1px solid var(--border);
}
header.site-header .bottom-header .wrapper nav {
  display: flex;
  flex-grow: 1;
}
header.site-header .bottom-header .wrapper nav > ul {
  display: flex;
  width: 100%;
}
header.site-header .bottom-header .wrapper nav > ul > li {
  flex-grow: 1;
  position: relative;
}
header.site-header .bottom-header .wrapper nav > ul > li a:after {
  font-size: 0.7em;
}
header.site-header .bottom-header .wrapper nav > ul > li > a {
  width: 100%;
  display: flex;
  align-items: center;
  height: 100%;
  text-align: center;
  justify-content: center;
  color: var(--text-gray);
  font-weight: 500;
  transition: 0.2s;
  border-right: 1px solid var(--border);
}
header.site-header .bottom-header .wrapper nav > ul > li > a:hover {
  color: var(--text);
  background: var(--border);
  border-color: transparent;
}
header.site-header .bottom-header .wrapper nav > ul > li .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  right: 0;
  background: var(--bg);
  border: solid var(--border);
  border-width: 0 1px 1px 1px;
  display: none;
}
header.site-header .bottom-header .wrapper nav > ul > li .sub-menu li a {
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  font-weight: 500;
  font-size: 17px;
  color: var(--text-gray);
}
header.site-header .bottom-header .wrapper nav > ul > li .sub-menu li a:hover {
  background: var(--border);
  border-color: transparent;
  color: var(--text);
}
header.site-header .bottom-header .wrapper nav > ul > li.menu-item-has-children {
  flex-grow: 0;
  width: 20%;
}
header.site-header .bottom-header .wrapper nav > ul > li.menu-item-has-children > a {
  padding: 0 2.2rem;
  justify-content: space-between;
}
header.site-header .bottom-header .wrapper nav > ul > li:hover .sub-menu {
  display: block;
}
header.site-header .bottom-header .wrapper nav > ul > li.current-menu-item:after {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 3px;
  background: var(--theme);
}
header.site-header .bottom-header .wrapper nav > ul > li.current-menu-item > a {
  color: var(--text);
}
header.site-header .mobile-header {
  display: none;
  position: relative;
}
header.site-header .mobile-header .wrapper {
  display: flex;
  align-items: center;
  height: var(--mobile-header);
}
header.site-header .mobile-header .wrapper .open-menu {
  display: flex;
  align-items: center;
  align-self: stretch;
  font-size: 2rem;
  transition: 0.2s;
  cursor: pointer;
  margin-left: -2rem;
  padding: 0 2rem;
}
header.site-header .mobile-header .wrapper .open-menu:hover {
  color: var(--theme);
}
header.site-header .mobile-header .wrapper .site-branding .description {
  display: none;
}
header.site-header .mobile-header .wrapper .cart-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  border-left: 1px solid var(--border);
  font-size: 2rem;
  color: var(--text);
  transition: 0.2s;
  cursor: pointer;
}
header.site-header .mobile-header .wrapper .cart-btn span {
  display: flex;
  position: relative;
}
header.site-header .mobile-header .wrapper .cart-btn:hover {
  border-color: transparent;
  background: var(--theme);
  color: #fff;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--mobile-header) + var(--admin-bar) + 1px);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 32;
  background: var(--bg);
}
.mobile-menu .mobile-menu-wrapper {
  height: 100%;
  overflow: auto;
  padding: 2rem;
}
.mobile-menu .mobile-menu-wrapper nav ul li {
  border-bottom: 1px solid var(--border);
}
.mobile-menu .mobile-menu-wrapper nav ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  color: var(--text-gray);
  font-weight: 500;
}
.mobile-menu .mobile-menu-wrapper nav ul li a:after {
  font-size: 0.7em;
  transition: 0.2s transform;
}
.mobile-menu .mobile-menu-wrapper nav ul li a:hover:after {
  transform: translateX(-50%);
}
.mobile-menu .mobile-menu-wrapper nav ul li.current-menu-item a, .mobile-menu .mobile-menu-wrapper nav ul li:hover a {
  color: var(--theme);
}

@media (max-width: 767px) {
  header.site-header .header-bar,
  header.site-header .top-header,
  header.site-header .bottom-header {
    display: none;
  }
  header.site-header .mobile-header {
    display: block;
  }
}
footer.site-footer {
  border-top: 1px solid var(--border);
}
footer.site-footer .top-footer {
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0;
}
footer.site-footer .top-footer .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer.site-footer .top-footer .wrapper nav ul {
  display: flex;
}
footer.site-footer .top-footer .wrapper nav ul li:not(:last-child) {
  margin-right: 2rem;
}
footer.site-footer .top-footer .wrapper nav ul li a {
  color: var(--text-gray);
}
footer.site-footer .top-footer .wrapper nav ul li:hover a, footer.site-footer .top-footer .wrapper nav ul li.current-menu-item a {
  color: var(--theme);
}
footer.site-footer .middle-footer {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
footer.site-footer .middle-footer .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer.site-footer .middle-footer .wrapper .item {
  line-height: 1;
  font-size: var(--small);
  color: var(--text-gray);
  font-weight: 500;
}
footer.site-footer .middle-footer .wrapper .item .title {
  color: var(--text);
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
  display: block;
}
footer.site-footer .middle-footer .wrapper .item a:hover {
  color: var(--theme);
}
footer.site-footer .bottom-footer .wrapper {
  padding: 1rem 0;
  font-size: var(--small);
  color: var(--text-gray);
  font-weight: 500;
  display: flex;
  align-items: center;
}
footer.site-footer .bottom-footer .wrapper a {
  color: var(--text-gray);
}
footer.site-footer .bottom-footer .wrapper a:hover {
  color: var(--theme);
}
footer.site-footer .bottom-footer .wrapper .developer {
  display: flex;
  align-items: center;
  text-align: right;
  color: var(--grey);
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 500;
}
footer.site-footer .bottom-footer .wrapper .developer svg {
  margin-left: 1rem;
  width: 5rem;
  fill: var(--text-gray);
  transition: 0.2s;
}
footer.site-footer .bottom-footer .wrapper .developer:hover svg {
  fill: var(--theme);
}

body .rec-slider {
  position: relative;
}
body .rec-slider .arrow {
  --margin: calc((var(--field) / 2) * -1);
}
body .rec-slider .arrow.prev {
  left: var(--margin);
}
body .rec-slider .arrow.next {
  right: var(--margin);
}
body .rec-slider .slick-list {
  width: calc(100% + 2rem);
  margin: -1rem;
}
body .rec-slider .product {
  margin: 1rem;
}
body .product {
  display: flex;
  flex-direction: column;
  border-radius: var(--rad-md);
  border: 1px solid var(--border);
  overflow: hidden;
}
body .product .image {
  width: 100%;
  height: calc((100vw + var(--container-padding) * 2) / var(--catalog) * 0.5);
  background-color: var(--gray-bg);
  background-position: center;
  background-size: cover;
  display: block;
}
body .product .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
body .product .product-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  font-size: var(--small);
  color: var(--text-gray);
  font-weight: 500;
  padding: 2rem;
}
body .product .product-content .title {
  display: block;
  margin-bottom: 1rem;
  color: var(--text);
}
body .product .product-content .title h6 {
  font-weight: 500;
}
body .product .product-content .title:hover {
  color: var(--theme);
}
body .product .product-content .product-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
body .product .product-content .product-actions .price {
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}
body .product .product-content .product-actions .btn {
  width: 100%;
}
body .catalog-items {
  display: flex;
}
body .catalog-items .line {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 2rem);
  margin: -1rem;
}
body .catalog-items .line .product {
  width: calc(100% / var(--catalog) - 2rem);
}
body .catalog-items .line > * {
  margin: 1rem;
}
body .tiles {
  display: flex;
}
body .tiles .line {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 2rem);
  margin: -1rem;
}
body .tiles .line > * {
  width: calc(100% / var(--tiles) - 2rem);
  height: var(--tiles-height);
  margin: 1rem;
  overflow: hidden;
  border-radius: var(--rad);
  position: relative;
  transition: 0.2s;
  flex-grow: 1;
  background-color: var(--gray-bg);
}
body .tiles .line > * .tile-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: var(--blue);
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: var(--v-small);
  padding: 0.8rem 1rem 0.6rem 1rem;
  line-height: 1;
  border-radius: var(--rad);
  pointer-events: none;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: none;
  backdrop-filter: blur(6px);
}
body .tiles .line > * .slick-dots {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  pointer-events: none;
  transition: 0.2s;
}
body .tiles .line > * .slick-dots li {
  display: flex;
  cursor: pointer;
  pointer-events: all;
  padding: 0.5rem;
}
body .tiles .line > * .slick-dots li button {
  padding: 0;
  width: 12px;
  height: 12px;
  border-radius: var(--rad-sm);
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: none;
  transition: 0.1s;
  cursor: pointer;
}
body .tiles .line > * .slick-dots li.slick-active button {
  background: var(--theme);
}
body .tiles .line > *:hover {
  filter: contrast(1.3);
}
body .tiles .line > *.large {
  width: calc(100% / var(--tiles) * var(--tiles-large) - 2rem);
}
body .tiles .line .tile {
  background-position: center;
  background-size: cover;
  color: var(--text) !important;
  position: relative;
  height: var(--tiles-height);
}
body .tiles .line .tile.static {
  flex-grow: 0;
}
body .tiles .line .tile .content {
  width: 100%;
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.2s;
}
body .tiles .line .tile .content .title {
  width: fit-content;
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--bg);
  padding: 0.6rem 0.8rem;
  border-radius: var(--rad);
  line-height: 1;
}
body .push-notifications {
  position: fixed;
  right: 2rem;
  bottom: 0;
  z-index: 99;
  width: var(--notifications);
  padding: 1rem 0;
  pointer-events: none;
  filter: drop-shadow(var(--shadow-s));
}
body .push-notifications .notif-item {
  padding: 1rem 0;
  display: none;
  transition: 0s;
  color: var(--text) !important;
}
body .push-notifications .notif-item .notif-wrapper {
  pointer-events: all;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: var(--padding);
  border-radius: var(--rad-md);
  display: flex;
  position: relative;
  border-left: 3px solid var(--theme);
}
body .push-notifications .notif-item .notif-wrapper .avatar {
  margin-right: 1.6rem;
}
body .push-notifications .notif-item .notif-wrapper .notif-content h6 {
  font-size: 1.6rem;
}
body .push-notifications .notif-item .notif-wrapper .notif-content p {
  font-weight: 500;
  color: var(--text-gray);
}
body .push-notifications .notif-item .notif-wrapper .notif-content .inline {
  padding-top: 1rem;
}
body .push-notifications .notif-item .notif-wrapper .close-icon {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  padding: 1.5rem;
  color: var(--text-gray);
  transition: 0.2s;
  cursor: pointer;
}
body .push-notifications .notif-item .notif-wrapper .close-icon:hover {
  color: var(--red);
}
body .no-results {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .page-title {
  padding: var(--padding-md) 0;
}
body .page-title:not(.borderless) {
  border-bottom: 1px solid var(--border);
}
body .page-title .wrapper h1 {
  line-height: 1.2;
  margin-bottom: 1rem;
}
body .image-page-header {
  background: var(--bg);
  padding-bottom: 9rem;
}
body .image-page-header .wrapper {
  padding: var(--padding-lg);
  background: var(--gray-bg);
  border-radius: var(--rad-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 40rem;
  position: relative;
  background-position: center;
  background-size: cover;
}
body .image-page-header .wrapper .search-form {
  position: absolute;
  left: var(--padding-lg);
  right: var(--padding-lg);
  bottom: 0;
  transform: translateY(50%);
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--rad-lg);
}
body .image-page-header .wrapper h1 {
  font-size: 5rem;
  line-height: 1;
}
body .image-page-header .wrapper p {
  font-weight: 500;
  color: var(--text-gray);
}
body section.with-sidebar .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
body section.with-sidebar .wrapper .sidebar {
  width: var(--sidebar);
  padding: 2.6rem;
  background: var(--bg);
  border-radius: var(--rad);
}
body section.with-sidebar .wrapper .sidebar.sticky {
  position: sticky;
  top: calc(var(--padding-md) + var(--header) + var(--admin-bar));
}
body section.with-sidebar .wrapper .sidebar .sidebar-banner {
  padding: var(--padding);
  background: var(--opacity);
  border-radius: var(--rad);
}
body section.with-sidebar .wrapper .sidebar .sidebar-banner p {
  color: var(--text-gray);
  font-size: var(--small);
  font-weight: 500;
}
body section.with-sidebar .wrapper .sidebar .filters-group .filters-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  cursor: pointer;
}
body section.with-sidebar .wrapper .sidebar .filters-group .filters-group-header .indicator {
  color: var(--text-gray);
  font-size: var(--small);
}
body section.with-sidebar .wrapper .sidebar .about-field p {
  color: var(--text-gray);
  font-size: var(--small);
  font-weight: 500;
}
body section.with-sidebar .wrapper .body {
  width: calc(100% - var(--sidebar) - var(--padding-lg));
}
body .checkboxes-list .checkbox-item {
  display: flex;
  align-items: center;
  cursor: pointer;
}
body .checkboxes-list .checkbox-item:not(:last-child) {
  margin-bottom: 1.5rem;
}
body .checkboxes-list .checkbox-item .text {
  width: 0;
  flex-grow: 1;
  padding: 0 1.5rem;
  font-weight: 500;
  color: var(--text-gray);
}
body .checkboxes-list .checkbox-item:hover .count-square, body .checkboxes-list .checkbox-item.active .count-square {
  background: var(--opacity);
  color: var(--theme);
}
body .page-header {
  background: var(--bg);
  padding: var(--padding-bg) 0;
  border-top: 1px solid var(--border);
}
body .page-header.no-padding-bottom {
  padding-bottom: 0;
}
body .page-header .page-header-title h1 {
  font-size: 5rem;
}
body .page-header .page-header-title p {
  color: var(--text-gray);
  font-weight: 500;
}
body .page-header .page-header-title.center {
  text-align: center;
}
body .page-header .task-single-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .page-header .task-single-header .task-meta {
  display: flex;
}
body .page-header .task-single-header .task-meta .line {
  margin: -1rem;
  width: calc(100% + 2rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
body .page-header .task-single-header .task-meta .line > * {
  margin: 1rem;
}
body .user-preview {
  display: flex;
  align-items: center;
}
body .user-preview .preview-text {
  padding: 0 1.5rem;
}
body .search-form {
  display: flex;
}
body .search-form .inputs {
  width: 0;
  flex-grow: 1;
  display: flex;
  margin-right: 2rem;
  background: var(--border);
  border-radius: var(--rad);
}
body .search-form .inputs .input-wrapper {
  width: 0;
  flex-grow: 1;
}
body .search-form .inputs .input-wrapper:not(:last-child) {
  border-right: 1px solid var(--border);
}
body .search-form .inputs .input-wrapper.large {
  width: 70%;
  flex-grow: 0;
}
body .cart-item {
  padding: 2rem 0;
  display: flex;
  align-items: center;
}
body .cart-item:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
body .cart-item .product-info {
  width: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
}
body .cart-item .product-info .image {
  width: 6rem;
  height: 6rem;
  flex-shrink: 0;
  background-color: var(--grey-bg);
  border-radius: var(--rad-md);
  margin-right: 2rem;
  background-position: center;
  background-size: cover;
}
body .cart-item .product-info .text {
  display: flex;
  flex-direction: column;
}
body .cart-item .product-info .text .tags {
  margin-bottom: 0.4rem;
}
body .cart-item .product-info .text .title {
  line-height: 1.2;
  color: var(--text);
}
body .cart-item .product-info .text .title:hover {
  color: var(--theme);
}
body .cart-item .quantity {
  width: 15rem;
}
body .cart-item .product-stats {
  display: flex;
  align-items: center;
}
body .cart-item .product-stats .product-stat {
  width: 12rem;
  text-align: center;
}
body .cart-item > *:not(:last-child) {
  margin-right: 3rem;
}
body .cart-item:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
body .welcome {
  padding: var(--padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-grow: 1;
}
body .welcome p {
  font-weight: 500;
  color: var(--text-gray);
}
body .tag {
  padding: 0.7rem 1rem;
  width: fit-content;
  line-height: 1;
  color: var(--theme);
  background: var(--opacity);
  font-weight: 500;
  border-radius: var(--rad-sm);
  font-size: var(--small);
  transition: 0.2s;
}
body .tag.symmetric {
  padding: 0.7rem;
}
body .tag.mini {
  padding: 0.4rem 0.5rem;
  font-size: calc(var(--fz) * 0.7);
}
body .tag.small {
  padding: 0.4rem 0.7rem;
  font-size: calc(var(--fz) * 0.8);
}
body .tag span.icon:not(:last-child) {
  margin-right: 0.4em;
}
body .tag .close {
  margin-left: 0.4rem;
  cursor: pointer;
  transition: 0.2s;
}
body .tag .close:hover {
  color: var(--red);
}
body .tag.blue {
  --theme: var(--blue);
  --opacity: var(--blue-opacity);
}
body .tag.orange {
  --theme: var(--orange);
  --opacity: var(--orange-opacity);
}
body .tag.red {
  --theme: var(--red);
  --opacity: var(--red-opacity);
}
body .tag.green, body .tag.done {
  --theme: var(--green);
  --opacity: var(--green-opacity);
}
body .tag.hover {
  cursor: pointer;
}
body .tag.hover:hover {
  background: var(--theme);
  color: #fff;
}
body .tag.grey {
  color: var(--text-gray);
  background: var(--border);
}
body .tag.grey.hover:hover {
  background: var(--theme);
  color: #fff;
}
body .tag.bg {
  background: var(--bg);
}
body .tag.solid {
  background: var(--theme);
  color: #fff;
}
body .tags {
  display: flex;
  --tags-margin: 0.3rem;
}
body .tags > .line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: fit-content;
  margin: calc(var(--tags-margin) * -1);
}
body .tags > .line > * {
  margin: var(--tags-margin);
}
body .tags.small {
  --tags-margin: 0.2rem;
}
body .meta {
  display: flex;
  align-items: center;
  color: var(--text-gray);
  font-weight: 500;
  line-height: 1;
}
body .meta.theme {
  color: var(--theme);
}
body .meta .icon {
  display: flex;
}
body .meta .icon:not(:last-child) {
  margin-right: 0.6rem;
}
body .meta .icon.theme {
  color: var(--theme);
}
body .file-preview {
  padding: 1rem 1.6rem 1rem 1rem;
  display: flex;
  width: fit-content;
  align-items: center;
  color: var(--text) !important;
  background: var(--gray-bg);
  border-radius: var(--rad);
  transition: 0.2s;
  position: relative;
}
body .file-preview .remove-file {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  padding: 0.6rem;
  font-size: 1.4rem;
  transition: 0.2s;
  cursor: pointer;
  color: var(--text-gray);
  opacity: 0;
}
body .file-preview .remove-file:hover {
  color: var(--red);
}
body .file-preview:hover {
  background: var(--opacity);
}
body .file-preview:hover .remove-file {
  opacity: 1;
}
body .file-preview .file-avatar {
  height: var(--file-avatar);
  width: calc(var(--file-avatar) * 0.9);
  background: var(--bg);
  border-radius: var(--rad);
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: var(--shadow-mc);
  font-size: 1.5rem;
  margin-right: 1.3rem;
  flex-shrink: 0;
}
body .file-preview .file-text {
  width: calc(100% - (var(--file-avatar) * 0.9 + 1.3rem));
}
body .file-preview .file-text .label {
  text-transform: uppercase;
}
body .files-line {
  display: flex;
}
body .files-line .line {
  display: flex;
  flex-wrap: wrap;
  margin: -1rem;
  width: calc(100% + 2rem);
}
body .files-line .line .file-preview {
  margin: 1rem;
}
body .task-mini-link {
  display: block;
  padding: 1.2rem 1.8rem;
  border: 1px solid var(--border);
  border-radius: var(--rad);
  color: var(--text) !important;
}
body .task-mini-link:hover {
  border-color: transparent;
  background: var(--border);
}
body .task-mini-link p {
  color: var(--text-gray);
  font-weight: 500;
  font-size: var(--small);
}
body .warning-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gray-bg);
  padding: 2rem 2.4rem;
  border-radius: var(--rad);
}
body .warning-block .title {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1;
}
body .warning-block p {
  font-weight: 500;
  color: var(--text-gray);
}
body .user-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .meta-items {
  display: flex;
}
body .meta-items .line {
  margin: -1rem;
  width: calc(100% + 2rem);
  display: flex;
  flex-wrap: wrap;
}
body .meta-items .line .sep {
  align-self: stretch;
  width: 1px;
  background: var(--border);
}
body .meta-items .line > * {
  margin: 1rem;
}
body .small-popup {
  position: fixed;
  z-index: 32;
  background: rgba(0, 0, 0, 0.5);
  top: var(--admin-bar);
  right: 0;
  bottom: 0;
  left: 0;
}
body .small-popup:not(.debug) {
  display: none;
}
body .small-popup .popup-content {
  height: 100%;
  width: 100%;
  padding: var(--padding);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
body .small-popup .popup-content .popup-blackboard {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
body .small-popup .popup-content > .wrapper {
  background: var(--bg);
  box-shadow: var(--shadow-m);
  border-radius: var(--rad-md);
  text-align: center;
  padding: var(--padding);
  position: relative;
  z-index: 2;
  width: var(--small-popup);
}
body .small-popup .popup-content > .wrapper .close-small-popup {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  padding: 1.2rem;
  font-size: 2rem;
  color: var(--text-gray);
  cursor: pointer;
  transition: 0.2s;
}
body .small-popup .popup-content > .wrapper .close-small-popup:hover {
  color: var(--red);
}
body .small-popup .popup-content > .wrapper p {
  color: var(--text-gray);
  font-weight: 500;
}
body .small-popup .popup-content > .wrapper .action {
  padding-top: 1rem;
}
body .popup {
  position: fixed;
  z-index: 32;
  background: rgba(0, 0, 0, 0.5);
  top: var(--admin-bar);
  right: 0;
  bottom: 0;
  left: 0;
}
body .popup.small {
  --popup: var(--small-popup);
}
body .popup:not(.debug) {
  display: none;
}
body .popup > .popup-content {
  height: 100%;
  width: 100%;
  padding: var(--padding);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
body .popup > .popup-content > .popup-blackboard {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
body .popup > .popup-content > .wrapper {
  background: var(--bg);
  box-shadow: var(--shadow-m);
  border-radius: var(--rad-bg);
  position: relative;
  z-index: 2;
  width: var(--popup);
}
body .popup > .popup-content > .wrapper .popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding: var(--padding-nm) var(--padding);
}
body .popup > .popup-content > .wrapper .tabs {
  padding: 0 var(--padding);
  margin-left: calc(var(--padding) * -1);
  margin-right: calc(var(--padding) * -1);
  border-bottom: 1px solid var(--border);
}
body .popup > .popup-content > .wrapper p {
  color: var(--text-gray);
  font-weight: 500;
}
body .popup > .popup-content > .wrapper .action {
  padding-top: 1rem;
}
body .popup > .popup-content > .wrapper > .content {
  padding: var(--padding);
  max-height: 70vh;
  overflow: auto;
}
body .popup > .popup-content > .wrapper .kanban-binding-form,
body .popup > .popup-content > .wrapper .manually-form {
  display: none;
}

@media (max-width: 767px) {
  body .product .image {
    height: calc((100vw - var(--container-padding) * 2) / var(--catalog) * 0.6);
  }
  body .product .product-content {
    padding: 1.2rem;
  }
  body .product .product-actions .price {
    font-size: 1.8rem;
  }
  body .catalog-items .line {
    width: calc(100% + 1rem);
    margin: -0.5rem;
  }
  body .catalog-items .line .product {
    width: calc(100% / var(--catalog) - 1rem);
  }
  body .catalog-items .line > * {
    margin: 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  body .product .image {
    height: calc((100vw - var(--container-padding) * 2) / var(--catalog) * 0.55);
  }
  body .catalog-items .line .product {
    width: calc(100% / var(--catalog) - 2rem);
  }
}
section.offer {
  background: var(--gray-bg);
  background-image: url(/wp-content/themes/init/img/page-title.jpg);
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 4rem 0;
}
section.offer .h1 span,
section.offer h1 span {
  background-color: var(--theme);
  color: #fff;
  display: inline-block;
  padding: 4px 20px 8px;
}
section.offer .wrapper {
  padding: 0 25%;
}

section.first-slide {
  padding: 3rem 0;
  background: var(--gray-bg);
}

section.about-company .wrapper {
  display: flex;
  justify-content: space-between;
}
section.about-company .wrapper .content {
  width: 45%;
  padding: var(--padding-md) 0;
}
section.about-company .wrapper .content:first-child:last-child {
  width: 100%;
}
section.about-company .wrapper .illustration {
  width: 50%;
  border-radius: var(--rad-md);
  overflow: hidden;
  box-shadow: 1rem 1rem 0 0 var(--opacity);
  display: flex;
}
section.about-company .wrapper .illustration:not(.fit) img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
section.about-company .wrapper .illustration.fit {
  align-self: center;
}

section.description .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.description .wrapper .content {
  width: 45%;
}
section.description .wrapper .image {
  width: 50%;
}

section.special-offer {
  padding: 10rem 0;
}
section.special-offer .wrapper {
  padding: 6rem;
  margin: 0 -6rem;
  border-radius: var(--rad-bg);
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
}
section.special-offer .wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: inherit;
}
section.special-offer .wrapper .so-from {
  background: var(--bg);
  border-radius: var(--rad-md);
  width: 40rem;
  box-shadow: 1rem 1rem 0 0 var(--theme);
  position: relative;
  z-index: 2;
  margin: -14rem 0;
  border: 4px solid var(--opacity);
}
section.special-offer .wrapper .so-from.large {
  width: 45rem;
}
section.special-offer .wrapper .so-from:not(.no-padding) {
  padding: 4rem;
}
section.special-offer .wrapper .so-description {
  padding: 0 4rem;
  margin: auto;
  position: relative;
  z-index: 2;
  font-weight: 500;
  display: block;
}
section.special-offer .wrapper .so-description.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
section.special-offer .wrapper .so-description:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24rem;
  z-index: -1;
  opacity: 0.1;
}
section.special-offer .wrapper .so-description .order_cons_form {
  display: flex;
}
section.special-offer .wrapper .so-description .order_cons_form .btn {
  margin-left: 1rem;
}
section.special-offer .wrapper .so-description input {
  backdrop-filter: blur(2px);
  background: rgba(255, 255, 255, 0.3);
}
section.special-offer.center .wrapper {
  justify-content: center;
}

section.consultation {
  display: flex;
  border-bottom: 1px solid var(--border);
}
section.consultation .form {
  padding: var(--section-padding) var(--container-padding) var(--section-padding) var(--container-padding);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.consultation .form .content .title {
  line-height: 1.2;
}
section.consultation .form .order_cons_form {
  display: flex;
}
section.consultation .form .order_cons_form .btn {
  margin-left: 1rem;
}
section.consultation .image-wrapper {
  flex-grow: 1;
  position: relative;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem var(--container-padding) 4rem 4rem;
}
section.consultation .image-wrapper .image {
  height: 34rem;
  width: 34rem;
  box-shadow: 1rem 1rem 0 0 var(--theme);
  border: 4px solid var(--opacity);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -7rem;
}
section.consultation .image-wrapper .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 1399px) and (min-width: 1024px) {
  section.first-slide {
    padding: 2rem 0;
  }
}
.article-block a {
  border-bottom: 1px dashed var(--theme);
  color: var(--theme);
}
.article-block ul li {
  display: flex;
  align-items: baseline;
}
.article-block ul li:before {
  content: "-";
  color: var(--theme);
  width: 4rem;
  flex-shrink: 0;
  padding-right: 1.5rem;
  text-align: right;
}
.article-block ul li:not(:last-child) {
  margin-bottom: 0.6rem;
}
.article-block ol {
  counter-reset: list;
}
.article-block ol li {
  display: flex;
  align-items: baseline;
  counter-increment: list;
}
.article-block ol li:before {
  content: counter(list) ".";
  color: var(--theme);
  width: 4rem;
  flex-shrink: 0;
  padding-right: 1.5rem;
  text-align: right;
}
.article-block ol li:not(:last-child) {
  margin-bottom: 0.6rem;
}

.page-title .wrapper {
  text-align: center;
}

.koffer1 {
  padding: 4rem 0;
}
.koffer1 .kcont {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.koffer1 .koffer01 {
  width: 33.333%;
  flex: 0 0 33.333%;
}
.koffer1 .koffer01 .k-body {
  background: var(--gray-bg);
  border-radius: var(--rad-bg);
  padding: 2.4rem;
  height: 100%;
}
.koffer1 .koffer01 .k-title {
  margin-bottom: 1.6rem;
}
.koffer1 .koffer01 .k-title h2 {
  font-size: var(--h3);
  font-weight: 700;
  line-height: 1.3;
}
.koffer1 .koffer01 .k-title h2 span {
  color: var(--theme);
}
.koffer1 .koffer01 .k-title .kflex {
  display: flex;
  gap: 0.8rem;
  align-items: baseline;
}
.koffer1 .koffer01 .k-telo {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.koffer1 .kcol1 {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.koffer1 .kcol2 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.koffer1 .kcol2 img {
  max-width: 100%;
  height: auto;
}
.koffer1 .krow1,
.koffer1 .krow2 {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.koffer1 .krow1 img,
.koffer1 .krow2 img {
  flex-shrink: 0;
  max-width: 100%;
  height: auto;
}
.koffer1 .krow1 .kimg1,
.koffer1 .krow2 .kimg1 {
  flex-shrink: 0;
}
.koffer1 .kimg-title1 {
  font-weight: 600;
  font-size: var(--fz);
  color: var(--text);
}
.koffer1 .kimg-title2 {
  font-size: var(--small);
  color: var(--text-gray);
}
.koffer1 .block1 {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.koffer1 .block1 img {
  flex-shrink: 0;
  max-width: 100%;
  height: auto;
}
.koffer1 .block2 {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.koffer1 .block2 img {
  flex-shrink: 0;
  max-width: 100%;
  height: auto;
}
.koffer1 .kimg1-title1,
.koffer1 .kimg2-title1 {
  font-weight: 600;
  font-size: var(--fz);
  color: var(--text);
}
.koffer1 .kimg1-title2,
.koffer1 .kimg2-title2 {
  font-size: var(--small);
  color: var(--text-gray);
}
@media (max-width: 767px) {
  .koffer1 {
    padding: 2.4rem 0;
  }
  .koffer1 .kcont {
    flex-direction: column;
    gap: 1.2rem;
  }
  .koffer1 .koffer01 {
    width: 100%;
    flex: 0 0 100%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .koffer1 .kcont {
    flex-wrap: wrap;
    gap: 1.6rem;
  }
  .koffer1 .koffer01 {
    width: calc(50% - 0.8rem);
    flex: 0 0 calc(50% - 0.8rem);
  }
  .koffer1 .koffer01:last-child {
    width: 100%;
    flex: 0 0 100%;
  }
}

.images-popup {
  position: fixed;
  top: var(--admin-bar);
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 70;
  backdrop-filter: blur(6px);
  padding: 8rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  user-select: none;
  display: none;
}
.images-popup .blackboard {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.images-popup .close-btn {
  --margin: calc((8rem - var(--field)) / 2);
  top: var(--margin);
  right: var(--margin);
  position: absolute;
  z-index: 2;
}
.images-popup .images-popup-slider {
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: relative;
  z-index: 3;
}
.images-popup .images-popup-slider .arrow {
  pointer-events: all;
}
.images-popup .images-popup-slider .arrow.prev {
  left: 0;
}
.images-popup .images-popup-slider .arrow.next {
  right: 0;
}
.images-popup .images-popup-slider .slick-list {
  height: 100%;
  overflow: visible;
}
.images-popup .images-popup-slider .slick-list .slick-track {
  height: 100%;
}
.images-popup .images-popup-slider .slick-list .image {
  max-height: 100%;
  margin: 0 1.5rem;
  border-radius: var(--rad-md);
  pointer-events: all;
}

section.single-product .product-info .wrapper {
  display: flex;
  align-items: flex-start;
  border: 1px solid var(--border);
  border-radius: var(--rad-lg);
}
section.single-product .product-info .wrapper .single-product-images {
  width: 50%;
  border-right: 1px solid var(--border);
  padding: 4rem;
  position: sticky;
  top: var(--section-padding);
  align-self: flex-start;
  height: fit-content;
}
section.single-product .product-info .wrapper .single-product-images .images-main-slider {
  border-radius: var(--rad-md);
  overflow: hidden;
}
section.single-product .product-info .wrapper .single-product-images .images-main-slider .blur-icon {
  opacity: 0;
}
section.single-product .product-info .wrapper .single-product-images .images-main-slider:hover .blur-icon {
  opacity: 1;
}
section.single-product .product-info .wrapper .single-product-images .images-main-slider .open-image {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
}
section.single-product .product-info .wrapper .single-product-images .images-main-slider .slick-arrow.prev {
  left: 2rem;
}
section.single-product .product-info .wrapper .single-product-images .images-main-slider .slick-arrow.next {
  right: 2rem;
}
section.single-product .product-info .wrapper .single-product-images .images-main-slider .image {
  height: calc(var(--container) / 2);
  height: 55rem;
  background-position: center;
  background-size: cover;
}
section.single-product .product-info .wrapper .single-product-content {
  width: 50%;
  padding: var(--section-padding);
}
section.single-product .product-info .wrapper .single-product-content .price-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.single-product .product-info .wrapper .single-product-content .price-block .price {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
}
section.single-product .product-info .wrapper .single-product-content .price-block .price-block-actions {
  display: flex;
  align-items: center;
}
section.single-product .product-info .wrapper .single-product-content .price-block .price-block-actions > *:not(:last-child) {
  margin-right: 1rem;
}
section.single-product .product-info .wrapper .single-product-content .price-block .price-block-actions .quantity {
  width: 14rem;
}

section.cart .wrapper {
  border-radius: var(--rad-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  overflow: hidden;
}
section.cart .wrapper .cart-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 3rem;
  border-bottom: 1px solid var(--border);
}
section.cart .wrapper .cart-block-header .right-block {
  display: flex;
  align-items: center;
}
section.cart .wrapper .cart-block-header .right-block > *:not(:last-child) {
  margin-right: 4rem;
}
section.cart .wrapper .cart-block-header .right-block .cart-stat {
  line-height: 1;
}
section.cart .wrapper .cart-block-header .right-block .cart-stat .title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
section.cart .wrapper .cart-block-body {
  padding: 2rem 3rem;
  position: relative;
}
section.cart .wrapper .order-form {
  border-top: 1px solid var(--border);
  padding: 4rem 3rem;
}

section.success .wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.success .wrapper .icon {
  font-size: 8rem;
  display: flex;
  color: var(--theme);
  margin-bottom: 1.5rem;
}
section.success .wrapper h1 {
  margin-bottom: 0.5rem;
}
section.success .wrapper .content {
  margin-bottom: 1.5rem;
  color: var(--text-grey);
  font-weight: 500;
}

section.contacts {
  min-height: calc(100vh - var(--header));
  position: relative;
  display: flex;
  align-items: center;
  padding: var(--section-padding) 0;
}
section.contacts > ymaps {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
section.contacts .container {
  pointer-events: none;
}
section.contacts .content {
  position: relative;
  z-index: 2;
  pointer-events: all;
  background: var(--bg);
  border-radius: var(--rad-md);
  width: 40rem;
  box-shadow: 1rem 1rem 0 0 var(--theme);
  padding: 4rem;
}
section.contacts .content .item .title {
  font-size: 2rem;
  font-weight: 500;
}
section.contacts .content .item div {
  color: var(--text-gray);
  font-weight: 500;
}
@media (max-width: 767px) {
  section.single-product .product-info .wrapper .single-product-images {
    position: static;
    align-self: auto;
    height: auto;
  }
}

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