@charset "UTF-8";
/* 0_reset.scss */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-start: 0;
  margin-block-end: 0;
  font-weight: unset;
  line-height: 1;
}

ul,
ol,
nav,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  background: none;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

figure {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

.hide {
  display: none;
}

button,
a {
  color: white;
  text-decoration: none;
}

li {
  list-style: none;
}

/* 1_colors.scss */
/* 1_media.scss */
/* 2_grid.scss */
:root {
  --vw: 1vw;
  --px: calc(var(--full-width) / 1680);
  --column-count: 12;
  --gutter: calc(var(--px) * 14);
  --margin: calc(var(--px) * 105);
  --max-width: 1680px;
  --full-width: calc(min(var(--max-width), 100 * var(--vw)));
  --column-width: calc((var(--full-width) - 2 * var(--margin) - (var(--column-count) - 1) * var(--gutter)) / var(--column-count));
  --component-gap: calc(var(--px) * 32);
}
@media (max-width: 666px) {
  :root {
    --px: calc(var(--full-width) / 320);
    --column-count: 1;
    --gutter: 0;
    --margin: calc(var(--px) * 24);
  }
}

@media (max-width: 666px) {
  .desktop-only {
    display: none !important;
  }
}

@media (min-width: 667px) {
  .mobile-only {
    display: none !important;
  }
}

div.help-grid {
  z-index: 999999;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: calc(var(--full-width) - var(--margin) * 2);
  height: 100%;
  pointer-events: none;
  background: repeating-linear-gradient(to right, rgba(255, 0, 0, 0.1), rgba(255, 0, 0, 0.1) var(--column-width), rgba(255, 0, 0, 0) var(--column-width), rgba(255, 0, 0, 0) calc(var(--column-width) + var(--gutter)));
}

div.help-component {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100 * var(--vw));
  height: 100%;
  pointer-events: none;
  translate: -50% 0;
  background: rgba(255, 0, 0, 0.1);
  pointer-events: none;
}

/* 3_times.scss */
/* 4_font-face.scss */
@font-face {
  font-family: "pragmatica";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/styles/designprosmotr-2025-1/fonts/pragmatica_book.woff2") format("woff2"), url("/styles/designprosmotr-2025-1/fonts/pragmatica_book.woff") format("woff"), url("/styles/designprosmotr-2025-1/fonts/pragmatica_book.ttf") format("truetype");
}
@font-face {
  font-family: "pragmatica";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/styles/designprosmotr-2025-1/fonts/pragmatica_medium.woff2") format("woff2"), url("/styles/designprosmotr-2025-1/fonts/pragmatica_medium.woff") format("woff"), url("/styles/designprosmotr-2025-1/fonts/pragmatica_medium.ttf") format("truetype");
}
@font-face {
  font-family: "pragmatica";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/styles/designprosmotr-2025-1/fonts/pragmatica_bold.woff2") format("woff2"), url("/styles/designprosmotr-2025-1/fonts/pragmatica_bold.woff") format("woff"), url("/styles/designprosmotr-2025-1/fonts/pragmatica_bold.ttf") format("truetype");
}
@font-face {
  font-family: "pragmatica_extended";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/styles/designprosmotr-2025-1/fonts/pragmatica_extended-medium.woff2") format("woff2"), url("/styles/designprosmotr-2025-1/fonts/pragmatica_extended-medium.woff") format("woff"), url("/styles/designprosmotr-2025-1/fonts/pragmatica_extended-medium.ttf") format("truetype");
}
/* 5_fonts.scss */
body {
  font-family: "pragmatica";
}

strong {
  text-transform: unset !important;
  color: #666666;
  text-align: left !important;
  font-weight: normal;
  font-size: 13px;
  color: #FF2D55 !important;
}

i {
  font-style: normal;
}

/* animations.scss */
@keyframes glitch-animation {
  0% {
    translate: 0 0;
  }
  20% {
    translate: calc(5 * var(--px)) calc(2 * var(--px));
  }
  40% {
    translate: calc(5 * var(--px)) calc(-2 * var(--px));
  }
  60% {
    translate: calc(-5 * var(--px)) calc(2 * var(--px));
  }
  80% {
    translate: calc(-5 * var(--px)) calc(-2 * var(--px));
  }
  100% {
    translate: 0 0;
  }
}
/* button.scss */
button {
  border: none;
}

a.button,
button.generic-button,
p.button {
  font-family: "pragmatica";
  font-weight: 500;
  font-size: calc(28 * var(--px));
  line-height: 0.9;
  letter-spacing: -0.02em;
}
@media (max-width: 666px) {
  a.button,
  button.generic-button,
  p.button {
    font-size: calc(9 * var(--px));
  }
}
a.button,
button.generic-button,
p.button {
  display: block;
  background: #000000;
  color: white;
  padding: calc(16 * var(--px)) calc(56 * var(--px));
  border-radius: calc(131 * var(--px));
  text-transform: uppercase;
}
@media (max-width: 666px) {
  a.button,
  button.generic-button,
  p.button {
    padding: calc(10 * var(--px));
    border-radius: calc(56 * var(--px));
  }
}

button:not(:disabled) {
  cursor: pointer;
}

/* checkbox.scss */
input[type=checkbox] {
  position: absolute !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
}
input[type=checkbox] + label, input[type=checkbox] + span {
  display: inline-flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  cursor: pointer !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  color: #666666 !important;
  position: relative !important;
  padding-left: 36px !important;
}
input[type=checkbox] + label.invalid-field::before, input[type=checkbox] + span.invalid-field::before {
  border-color: #FF2D55;
}
input[type=checkbox] + label::before, input[type=checkbox] + span::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 24px !important;
  height: 24px !important;
  border: 1px solid #DADADA;
  border-radius: 4px !important;
  background: #FFFFFF;
  transition: all 0.2s ease !important;
}
input[type=checkbox] + label::after, input[type=checkbox] + span::after {
  content: "";
  position: absolute;
  left: 8px !important;
  top: 4px !important;
  width: 6px !important;
  height: 11px !important;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0 !important;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}
input[type=checkbox]:checked + label::before, input[type=checkbox]:checked + span::before {
  background-color: #007AFF !important;
  border-color: #007AFF;
}
input[type=checkbox]:checked + label::after, input[type=checkbox]:checked + span::after {
  opacity: 1 !important;
}
input[type=checkbox]:disabled + label, input[type=checkbox]:disabled + span {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
}
input[type=checkbox]:disabled + label::before, input[type=checkbox]:disabled + span::before {
  background-color: #FFFFFF !important;
}

/* cursor.scss */
/* error.scss */
div.error {
  display: none;
  background-color: #FF2D55;
  gap: 8px;
  border-radius: 8px;
  margin-top: 10px;
  padding: 12px 24px 12px 16px;
  justify-content: center;
  align-items: center;
}
div.error p {
  color: white !important;
}
div.error span {
  color: white;
}
div.error .icon-circle {
  border: 1px solid white;
  color: white;
}
div.error.is-active {
  display: flex !important;
}

.invalid-field {
  border-color: #FF2D55 !important;
}

.invalid-field + span {
  border-color: #FF2D55 !important;
}

/* fonts.scss */
/* form.scss */
form.ajax-form:not(.error):not(.success) div.sent {
  display: none;
}
form.ajax-form.error div.success {
  display: none;
}
form.ajax-form.success div.error {
  display: none;
}
form.ajax-form > div.form {
  position: relative;
}
form.ajax-form div.sent {
  margin-top: calc(8 * var(--px));
  width: fit-content;
}
form.ajax-form div.sent > div.result {
  position: relative;
  padding: 0 3em 2em 3em;
  text-transform: uppercase;
}
form.ajax-form div.sent > div.result::after {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: calc(233 * var(--px));
  height: calc(15 * var(--px));
  background: #9c9c9d;
  content: "";
}
@media (max-width: 666px) {
  form.ajax-form div.sent > div.result::after {
    width: calc(120 * var(--px));
    height: calc(6 * var(--px));
  }
}
@media (max-width: 666px) {
  form.ajax-form div.sent {
    margin-bottom: calc(16 * var(--px));
  }
}
form.ajax-form ul.fields {
  margin-top: calc(24 * var(--px));
}
form.ajax-form ul.fields:hover .glitch-element {
  background-position: 100% 0;
}
form.ajax-form:not(.success) ul.fields:has(:not(button):focus) .glitch-element {
  background-image: linear-gradient(0.48turn, #FF47D4 50%, #FF3C1E 100%);
}
form.ajax-form li.invalid > label {
  color: #ffe100;
}
form.ajax-form li.invalid > label > p {
  color: #ffe100;
}
form.ajax-form li.invalid > label::before {
  border-color: #ffe100 !important;
  outline-color: #ffe100 !important;
}
form.ajax-form li > label > p {
  transition: color 0.3s ease-in-out;
}
form.ajax-form li:has(> input[type=checkbox]) > label > p,
form.ajax-form label:has(> input[type=radio]) > label > p,
form.ajax-form fieldset > label > p {
  font-family: "pragmatica";
  font-weight: 400;
  font-size: calc(12 * var(--px));
  line-height: calc(12 * var(--px));
  letter-spacing: -0.02em;
}
@media (max-width: 666px) {
  form.ajax-form li:has(> input[type=checkbox]) > label > p,
  form.ajax-form label:has(> input[type=radio]) > label > p,
  form.ajax-form fieldset > label > p {
    font-size: calc(9 * var(--px));
    line-height: calc(9 * var(--px));
  }
}
form.ajax-form li:has(> input[type=checkbox]) > label > p,
form.ajax-form label:has(> input[type=radio]) > label > p,
form.ajax-form fieldset > label > p {
  flex: 1;
}
form.ajax-form li:has(> input[type=checkbox]) > label,
form.ajax-form label:has(> input[type=radio]) > label,
form.ajax-form fieldset > label {
  position: static !important;
  margin: 0 !important;
  color: #ffffff;
  display: flex;
  align-items: center;
}
form.ajax-form li:has(> input[type=checkbox]) > label > a,
form.ajax-form label:has(> input[type=radio]) > label > a,
form.ajax-form fieldset > label > a {
  margin-left: 0.5ch;
}
form.ajax-form li:has(> input[type=checkbox]) > label > a,
form.ajax-form label:has(> input[type=radio]) > label > a,
form.ajax-form fieldset > label > a {
  font-family: "pragmatica";
  font-weight: 500;
  font-size: calc(28 * var(--px));
  line-height: 0.9;
  letter-spacing: -0.02em;
}
@media (max-width: 666px) {
  form.ajax-form li:has(> input[type=checkbox]) > label > a,
  form.ajax-form label:has(> input[type=radio]) > label > a,
  form.ajax-form fieldset > label > a {
    font-size: calc(9 * var(--px));
  }
}
form.ajax-form li:has(> input[type=checkbox]) > input.status,
form.ajax-form label:has(> input[type=radio]) > input.status,
form.ajax-form fieldset > input.status {
  display: none;
}
form.ajax-form li:has(> input[type=checkbox]) > label:has(input:checked)::before,
form.ajax-form li:has(> input[type=checkbox]) > input:checked + label::before,
form.ajax-form label:has(> input[type=radio]) > label:has(input:checked)::before,
form.ajax-form label:has(> input[type=radio]) > input:checked + label::before,
form.ajax-form fieldset > label:has(input:checked)::before,
form.ajax-form fieldset > input:checked + label::before {
  background: white;
  border: 1px solid #000000;
  outline: 1px solid #ffffff;
}
form.ajax-form a {
  text-decoration: underline;
  color: currentColor;
}

/* glitch.scss */
.glitch-element {
  font-family: "pragmatica";
  font-weight: 500;
  font-size: calc(28 * var(--px));
  line-height: 0.9;
  letter-spacing: -0.02em;
}
@media (max-width: 666px) {
  .glitch-element {
    font-size: calc(9 * var(--px));
  }
}
.glitch-element {
  display: block;
  position: relative;
  color: #000000;
  border-radius: calc(60 * var(--px));
  padding: 0 calc(60 * var(--px));
  line-height: calc(60 * var(--px));
  font-size: calc(18 * var(--px));
  text-align: center;
  text-transform: uppercase;
  background-image: linear-gradient(0.48turn, #FF47D4 50%, #FF3C1E 100%);
  background-size: 200% 100%;
  background-position: 0 0;
  color: #000000 !important;
  text-decoration: none !important;
  transition: background-position 0.3s ease-in-out, filter 0.3s ease-in-out;
}
@media (max-width: 666px) {
  .glitch-element {
    font-size: calc(9 * var(--px));
  }
}
.glitch-element > span {
  display: block;
  position: relative;
  z-index: 1;
}
@media (max-width: 666px) {
  .glitch-element {
    padding: 0 calc(10 * var(--px));
    line-height: calc(30 * var(--px));
  }
}
.glitch-element:has([data-state=focus]), .glitch-element:hover {
  background-position: 100% 0;
}
.glitch-element:has([data-state=success]) {
  background: linear-gradient(222deg, #A347FF 10.84%, #FF47D4 98.94%);
}
.glitch-element:has([data-state=error]) {
  background: #666666;
}
.glitch-element:has([data-state=invalid]) {
  background: #ffe100;
}

/* info_button.scss */
li.info-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  list-style: none;
  width: 24px;
  height: auto;
}

.info-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  width: 24px;
  height: 24px;
}

.icon-circle {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #666666;
  border-radius: 50%;
  color: #666666;
  font-size: 12px;
  font-family: serif;
  font-style: italic;
  line-height: 18px;
  text-align: center;
  transition: all 0.2s;
}

.info-button:hover .icon-circle {
  border-color: #000000;
  color: #000000;
}

.tooltip-box {
  display: none;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 660px;
  max-width: calc(100vw - 80px);
  background-color: #666666;
  color: #FFFFFF;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.tooltip-arrow {
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #666666;
}

li.info-item:hover .tooltip-box,
.tooltip-box.is-active {
  display: block;
}

@media (max-width: 768px) {
  .tooltip-box {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    max-width: 400px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 20px;
  }
  .tooltip-arrow {
    display: none;
  }
  li.info-item:hover .tooltip-box {
    display: none;
  }
  .tooltip-box.is-active {
    display: block;
  }
}
@media (max-width: 480px) {
  .tooltip-box {
    width: 95vw;
    max-width: 340px;
    padding: 16px;
    font-size: 13px;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .tooltip-box {
    width: 500px;
    left: 32px;
  }
}
.info-button:focus .icon-circle {
  border-color: #000000;
  color: #000000;
}

.info-button:focus + .tooltip-box,
.tooltip-box:focus-within {
  display: block;
}

@media (hover: none) and (pointer: coarse) {
  li.info-item:hover .tooltip-box {
    display: none;
  }
}
/* input.scss */
/* loader.scss */
@keyframes loader-offset {
  from {
    stroke-dashoffset: 882.6;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes loader-dash {
  from {
    stroke-dasharray: 0 882.6;
  }
  30%, 70% {
    stroke-dasharray: 160 722.6;
  }
  to {
    stroke-dasharray: 0 882.6;
  }
}
div.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000000;
  z-index: 999999;
  transition: opacity 1s ease;
}
div.loader > svg {
  position: fixed;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
div.loader > svg .loader-path {
  animation: loader-offset 5s linear infinite, loader-dash 7s linear infinite, loader-color 3s linear infinite;
}
div.loader.finishing {
  opacity: 0;
}

/* share.scss */
menu.share {
  font-family: "pragmatica";
  font-weight: 400;
  font-size: calc(18 * var(--px));
  line-height: calc(18 * var(--px));
  letter-spacing: -0.02em;
}
@media (max-width: 666px) {
  menu.share {
    font-size: calc(12 * var(--px));
    line-height: calc(12 * var(--px));
  }
}
menu.share {
  display: flex;
  flex-wrap: wrap;
  gap: calc(60 * var(--px));
}
@media (max-width: 666px) {
  menu.share {
    gap: calc(12 * var(--px));
    justify-content: space-between;
  }
}
menu.share svg {
  display: none;
}
menu.share > li > button {
  padding: 0;
}
menu.share > li > button > span {
  font-family: "pragmatica";
  font-weight: 400;
  font-size: calc(18 * var(--px));
  line-height: calc(18 * var(--px));
  letter-spacing: -0.02em;
}
@media (max-width: 666px) {
  menu.share > li > button > span {
    font-size: calc(12 * var(--px));
    line-height: calc(12 * var(--px));
  }
}
menu.share > li > button > span {
  display: block;
  text-decoration: underline;
  text-underline-offset: calc(2 * var(--px));
}

/* form/blocks.scss */
/* form/ui-kit/checkbox.scss */
/* &.scss */
html {
  padding-inline: 80px;
  overflow-x: clip;
  overscroll-behavior-x: none;
}
@media (max-width: 666px) {
  html:has(input[name=burger]:checked) {
    overflow-y: hidden;
  }
}
@media screen and (max-width: 1024px) {
  html {
    padding-inline: 0px;
  }
}

/* body/&.index.scss */
/* body/&.scss */
html > body {
  max-width: var(--max-width);
  margin: auto;
  background: #F5F5F5;
  color: #ffffff;
}
html > body > main > *,
html > body > header,
html > body > footer {
  padding: 0 var(--margin);
}
html > body > header,
html > body > main > * {
  padding-bottom: var(--component-gap);
}
@media (max-width: 1439px) {
  html > body {
    overflow-x: clip;
    overscroll-behavior-x: none;
  }
  html > body > main {
    overflow-x: clip;
    overscroll-behavior-x: none;
  }
}

/* body/div.lines.scss */
/* body/footer/&.scss */
html > body > footer {
  margin-block: 20px;
  display: grid;
  background: #F5F5F5;
  align-items: center;
}
html > body > footer ul {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-wrap: wrap;
}
html > body > footer ul li {
  padding-inline: 8px;
}
html > body > footer a {
  white-space: nowrap;
  font-size: 12px;
  color: #007AFF;
}
html > body > footer > a {
  color: #000000;
  grid-column: 2;
  grid-row: 1;
  text-align: right;
}
@media (max-width: 666px) {
  html > body > footer > a {
    grid-column: 1;
    grid-row: 2;
  }
}

/* body/header/&.finished.scss */
html > body > header.finished > div::after {
  content: none !important;
}

/* body/header/&.scss */
html > body > header {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: var(--full-width);
  margin-bottom: 0;
  z-index: 1000;
}
@media (max-width: 1023px) or (pointer: coarse) {
  html > body > header:has(input[name=burger]:checked) > div {
    translate: 0 0;
  }
}
@media (max-width: 666px) {
  html > body > header {
    position: fixed;
  }
}
html > body > header:not(:has(> div)) > a {
  width: calc(40 * var(--px));
  height: calc(40 * var(--px));
}
@media (max-width: 666px) {
  html > body > header:not(:has(> div)) > a {
    width: calc(24 * var(--px));
    height: calc(24 * var(--px));
  }
}

/* body/header/a.scss */
html > body > header > a {
  position: absolute;
  display: block;
  width: calc(24 * var(--px));
  height: calc(24 * var(--px));
  top: calc(40 * var(--px));
  left: calc(40 * var(--px));
  background: url("/styles/images/designprosmotr-2025-1/favicon_white.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 666px) {
  html > body > header > a {
    width: calc(16 * var(--px));
    height: calc(16 * var(--px));
    top: calc(26 * var(--px));
    left: calc(24 * var(--px));
  }
}

/* body/header/label.scss */
html > body > header > label {
  position: absolute;
  background-image: url("/styles/images/burger.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media (pointer: fine) and (width >= 1024px) {
  html > body > header > label {
    display: none;
  }
}
@media (pointer: coarse) or (width < 1024px) {
  html > body > header > label {
    left: var(--margin) !important;
  }
}
html > body > header > label > input {
  display: none;
}
html > body > header > label:has(input:checked) {
  background-image: url("/styles/images/designprosmotr-2026-2/close_fancy.svg");
  filter: brightness(0);
}
@media (min-width: 1024px) {
  html > body > header > label {
    top: calc(32 * var(--px));
    left: calc(32 * var(--px));
    width: calc(36 * var(--px));
    height: calc(36 * var(--px));
  }
}
@media (max-width: 1023px) {
  html > body > header > label {
    top: calc(64 * var(--px));
    left: calc(64 * var(--px));
    width: calc(72 * var(--px));
    height: calc(72 * var(--px));
  }
}
@media (max-width: 666px) {
  html > body > header > label {
    top: calc(40 * var(--px));
    left: calc(24 * var(--px));
    width: calc(18 * var(--px));
    height: calc(18 * var(--px));
  }
  html > body > header > label:has(input:checked) {
    width: calc(32 * var(--px));
    height: calc(32 * var(--px));
  }
}
html > body > header > label::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 48px;
  height: 48px;
  translate: -50% -50%;
  content: "";
}

/* body/header/div/&.scss */
html > body > header > div > a {
  font-family: "pragmatica";
  font-weight: 400;
  font-size: calc(18 * var(--px));
  line-height: calc(18 * var(--px));
  letter-spacing: -0.02em;
}
@media (max-width: 666px) {
  html > body > header > div > a {
    font-size: calc(12 * var(--px));
    line-height: calc(12 * var(--px));
  }
}
html > body > header > div > a {
  display: block;
  border-radius: calc(64 * var(--px));
  padding: calc(14 * var(--px)) 0;
  background: #ffffff;
  writing-mode: sideways-lr;
  text-transform: uppercase;
  font-size: calc(16 * var(--px));
  font-weight: 500;
  width: calc(30 * var(--px));
  line-height: calc(31 * var(--px));
}
@media (max-width: 1023px) or (pointer: coarse) {
  html > body > header > div > a {
    display: none;
  }
}
@media (min-width: 1024px) and (pointer: fine) {
  html > body > header > div {
    position: absolute;
    top: calc(40 * var(--px));
    right: calc(40 * var(--px));
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  html > body > header > div > *:not(:last-child) {
    position: relative;
  }
  html > body > header > div > *:not(:last-child)::after {
    position: relative;
    left: calc(50% - 1 * var(--px));
    display: block;
    background: #ffffff;
    width: calc(2 * var(--px));
    height: 50vh;
    margin-bottom: calc(16 * var(--px));
    content: "";
  }
  html > body > header > div::after {
    position: relative;
    display: block;
    background: #000000;
    width: calc(3 * var(--px));
    height: calc(600 * var(--px));
    margin-block: calc(16 * var(--px));
    content: "";
  }
}
@media (max-width: 1023px) or (pointer: coarse) {
  html > body > header > div {
    position: absolute;
    top: -1px;
    left: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: calc(100svw + 2px);
    height: 125svh;
    padding-bottom: 30svh;
    background: #ececec;
    translate: 0 -100%;
  }
}

/* body/header/div/ul.anchors.scss */
html > body > header > div > ul.anchors {
  display: flex;
  flex-direction: column;
  gap: calc(40 * var(--px));
  align-items: center;
  margin-bottom: 10%;
}
html > body > header > div > ul.anchors > li > a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  font-size: calc(16 * var(--px));
  font-weight: 500;
  text-transform: uppercase;
}
@media (min-width: 1024px) and (pointer: fine) {
  html > body > header > div > ul.anchors {
    display: none;
  }
}
@media (min-width: 1024px) {
  html > body > header > div > ul.anchors {
    gap: calc(80 * var(--px));
  }
  html > body > header > div > ul.anchors > li > a {
    font-size: calc(32 * var(--px));
  }
}

/* body/header/div/ul.social.scss */
html > body > header > div > ul.social {
  display: flex;
  flex-direction: column;
  gap: calc(18 * var(--px));
}
html > body > header > div > ul.social > li {
  width: calc(28 * var(--px));
  height: calc(28 * var(--px));
}
@media (max-width: 1023px) {
  html > body > header > div > ul.social > li {
    width: calc(120 * var(--px));
    height: calc(120 * var(--px));
  }
}
@media (max-width: 666px) {
  html > body > header > div > ul.social > li {
    width: calc(40 * var(--px));
    height: calc(40 * var(--px));
  }
}
@media (max-width: 450px) {
  html > body > header > div > ul.social > li {
    width: calc(54 * var(--px));
    height: calc(54 * var(--px));
  }
}
html > body > header > div > ul.social > li > a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
html > body > header > div > ul.social > li > a > svg {
  width: 100%;
  height: 100%;
}
html > body > header > div > ul.social > li > a > svg > defs > linearGradient > stop {
  transition: stop-color 0.3s ease-in-out;
}
html > body > header > div > ul.social > li.vk, html > body > header > div > ul.social > li.telegram, html > body > header > div > ul.social > li.instagram {
  padding: calc(2 * var(--px));
}
html > body > header > div > ul.social > li:not(:hover) > a > svg > defs > linearGradient > stop {
  stop-color: #000000;
}
html > body > header > div > ul.social > li:not(.instagram) {
  position: relative;
}
html > body > header > div > ul.social > li:not(.instagram)::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: block;
  width: 80%;
  height: 50%;
  border-radius: 100%;
  transition: background-color 0.3s ease-in-out;
  pointer-events: none;
  z-index: -1;
  content: "";
}
html > body > header > div > ul.social > li:not(.instagram):hover::after {
  background-color: white;
}
@media (max-width: 1023px) or (pointer: coarse) {
  html > body > header > div > ul.social {
    position: static;
    flex-direction: row;
    gap: calc(80 * var(--px));
  }
}
@media (max-width: 666px) {
  html > body > header > div > ul.social {
    flex-direction: column;
    gap: calc(28 * var(--px));
  }
}

/* body/header/nav/&.scss */
html > body > header > nav {
  position: absolute;
  top: calc(40 * var(--px));
  left: calc(40 * var(--px));
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  gap: calc(12 * var(--px));
}
@media (max-width: 1023px) or (pointer: coarse) {
  html > body > header > nav {
    display: none;
  }
}

/* body/header/nav/a.scss */
html > body > header > nav > a {
  display: block;
  width: calc(32 * var(--px));
  height: calc(32 * var(--px));
  background: url("/styles/images/designprosmotr-2026-2/favicon_black.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1023px) or (pointer: coarse) {
  html > body > header > nav > a {
    display: none;
  }
}

/* body/header/nav/ul.scss */
html > body > header > nav > ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}
html > body > header > nav > ul > li {
  display: flex;
  flex-direction: column;
  align-items: center;
}
html > body > header > nav > ul > li > a {
  display: block;
  color: #ffffff;
  border-radius: calc(64 * var(--px));
  padding: calc(14 * var(--px)) 0;
  writing-mode: sideways-lr;
  text-transform: uppercase;
  font-size: calc(16 * var(--px));
  font-weight: 500;
  line-height: calc(30 * var(--px));
  transition: color 0.3s ease-in-out;
}
html > body > header > nav > ul > li > a:hover {
  color: #ff47d4;
}
html > body > header > nav > ul > li:not(:last-child)::after, html > body > header > nav > ul > li:first-child::before {
  position: relative;
  display: block;
  translate: calc(-2 * var(--px)) 0;
  background: #000000;
  width: calc(3 * var(--px));
  height: calc(16 * var(--px));
  content: "";
}
html > body > header > nav > ul::after {
  position: relative;
  display: block;
  background: #000000;
  width: calc(3 * var(--px));
  height: calc(600 * var(--px));
  content: "";
}

/* body/main/section.buy-ticket-form/&.collapsed.scss */
html > body > main > section.buy-ticket-form.collapsed div.form > :not(div.ticket),
html > body > main > section.buy-ticket-form.collapsed nav.city {
  display: none;
}
html > body > main > section.buy-ticket-form.collapsed div.ticket > div:nth-child(2) > button[type=submit] {
  display: none;
}

/* body/main/section.buy-ticket-form/&.hide-legal.scss */
/* body/main/section.buy-ticket-form/&.scss */
html > body > main > section.buy-ticket-form {
  background-color: #F5F5F5;
  margin-top: calc(100 * var(--px));
}
@media (max-width: 666px) {
  html > body > main > section.buy-ticket-form {
    margin-block: calc(30 * var(--px));
    padding-inline: 16px;
  }
}
html > body > main > section.buy-ticket-form p {
  text-transform: unset !important;
  color: #666666;
  text-align: left !important;
  font-weight: normal;
  font-size: 13px;
}
html > body > main > section.buy-ticket-form h1 {
  font-size: 24px !important;
  color: #000000 !important;
  text-transform: unset !important;
  color: #666666;
  text-align: left !important;
  font-weight: normal;
  font-size: 13px;
}
html > body > main > section.buy-ticket-form h2 {
  font-size: 20px !important;
  color: #000000 !important;
  text-transform: unset !important;
  color: #666666;
  text-align: left !important;
  font-weight: normal;
  font-size: 13px;
}
html > body > main > section.buy-ticket-form h3 {
  font-size: 18px !important;
  color: #000000 !important;
  text-transform: unset !important;
  color: #666666;
  text-align: left !important;
  font-weight: normal;
  font-size: 13px;
}
html > body > main > section.buy-ticket-form a {
  text-transform: unset !important;
  color: #666666;
  text-align: left !important;
  font-weight: normal;
  font-size: 13px;
  font-size: 13px !important;
  text-decoration: none;
  color: #007AFF;
  font-weight: normal !important;
}

/* body/main/section.buy-ticket-form/&:not(.collapsed).scss */
html > body > main > section.buy-ticket-form:not(.collapsed) div.ticket > div:nth-child(2) > button[type=button] {
  display: none;
}

/* body/main/section.buy-ticket-form/&.intensive/&.scss */
html > body > main > section.buy-ticket-form.intensive .please,
html > body > main > section.buy-ticket-form.intensive ul.fields-questions {
  display: none !important;
}

/* body/main/section.buy-ticket-form/&.sold/&.scss */
html > body > main > section.buy-ticket-form.sold > p.sold {
  color: #666666;
  text-align: center;
  max-width: calc(800 * var(--px));
}

/* body/main/section.buy-ticket-form/form/&.scss */
html > body > main > section.buy-ticket-form > form > input[name=order_type] {
  display: none;
}
html > body > main > section.buy-ticket-form > form > p.info {
  margin-top: calc(30 * var(--px));
  text-align: center;
}
@media (max-width: 666px) {
  html > body > main > section.buy-ticket-form > form > p.info {
    margin-top: calc(20 * var(--px));
    font-size: calc(15 * var(--px));
  }
}
html > body > main > section.buy-ticket-form > form:has(input[name=order_type][value=person]:checked) > nav.city > label[for=type-person] {
  background: #FFFFFF;
  color: #000000;
}
html > body > main > section.buy-ticket-form > form:has(input[name=order_type][value=legal]:checked) > nav.city > label[for=type-legal] {
  background: #FFFFFF;
  color: #000000;
}
html > body > main > section.buy-ticket-form > form [data-state=type-legal-company] {
  display: none;
}
html > body > main > section.buy-ticket-form > form:has(input[name=order_type][value=person]:checked) [data-type=type-legal-person] {
  display: block;
}
html > body > main > section.buy-ticket-form > form:has(input[name=order_type][value=person]:checked) [data-type=type-legal-company],
html > body > main > section.buy-ticket-form > form:has(input[name=order_type][value=person]:checked) [data-type=type-person] {
  display: none !important;
}
html > body > main > section.buy-ticket-form > form:has(input[name=order_type][value=person]:checked) [data-state=type-legal-company] {
  display: none !important;
}
html > body > main > section.buy-ticket-form > form:has(input[name=order_type][value=person]:checked) .hint-company {
  display: none;
}
html > body > main > section.buy-ticket-form > form:has(input[name=order_type][value=person]:checked) .hint-user {
  display: block;
}
html > body > main > section.buy-ticket-form > form:has(input[name=order_type][value=legal]:checked) [data-type=type-legal-company] {
  display: block;
}
html > body > main > section.buy-ticket-form > form:has(input[name=order_type][value=legal]:checked) [data-type=type-person],
html > body > main > section.buy-ticket-form > form:has(input[name=order_type][value=legal]:checked) [data-type=type-legal-person],
html > body > main > section.buy-ticket-form > form:has(input[name=order_type][value=legal]:checked) [data-state=type-legal-person] {
  display: none !important;
}
html > body > main > section.buy-ticket-form > form:has(input[name=order_type][value=legal]:checked) [data-state=type-legal-company] {
  display: block;
}
html > body > main > section.buy-ticket-form > form:has(input[name=order_type][value=legal]:checked) .hint-company {
  display: block;
}
html > body > main > section.buy-ticket-form > form:has(input[name=order_type][value=legal]:checked) .hint-user {
  display: none;
}

/* body/main/section.buy-ticket-form/form/nav.city.scss */
html > body > main > section.buy-ticket-form > form > nav.city {
  height: 44px;
  background-color: #EBEBEB !important;
  display: grid;
  border-radius: 10px;
  margin-block: calc(30 * var(--px));
  color: #000000;
  background-color: #FFFFFF;
  padding: 2px;
  border-radius: 10px;
}
html > body > main > section.buy-ticket-form > form > nav.city > label {
  color: #666666;
  height: 100%;
  text-align: center;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
html > body > main > section.buy-ticket-form > form > nav.city > label {
  padding: calc(7 * var(--px)) calc(16 * var(--px)) calc(4 * var(--px));
  border-radius: 8px;
}

/* body/main/section.buy-ticket-form/form/div.form/!button.drop-participant.scss */
/* body/main/section.buy-ticket-form/form/div.form/!li.budjet.scss */
html > body > main > section.buy-ticket-form > form > div.form li.budjet {
  grid-column-start: 1;
  grid-column-end: 5;
  padding: calc(30 * var(--px));
  border-radius: calc(20 * var(--px));
  display: grid;
}
@media (max-width: 666px) {
  html > body > main > section.buy-ticket-form > form > div.form li.budjet {
    grid-column-end: 2;
    grid-template-columns: 1fr;
    padding: calc(10 * var(--px));
    gap: calc(10 * var(--px));
  }
}
html > body > main > section.buy-ticket-form > form > div.form li.budjet > p,
html > body > main > section.buy-ticket-form > form > div.form li.budjet > label {
  transition: color 0.3s ease-in-out;
}
html > body > main > section.buy-ticket-form > form > div.form li.budjet > label::before {
  translate: 0 calc(2 * var(--px));
  transition: filter 0.3s ease-in-out;
}
html > body > main > section.buy-ticket-form > form > div.form li.budjet > p:nth-of-type(1) {
  grid-row: 1;
  align-content: end;
}
html > body > main > section.buy-ticket-form > form > div.form li.budjet > p:nth-of-type(2) {
  grid-row: 2;
}
@media (max-width: 666px) {
  html > body > main > section.buy-ticket-form > form > div.form li.budjet > p:nth-of-type(2) {
    grid-row: unset;
    grid-column: unset;
  }
}
html > body > main > section.buy-ticket-form > form > div.form li.budjet:has(input:checked) > label::before {
  filter: invert(1);
}

/* body/main/section.buy-ticket-form/form/div.form/&.scss */
html > body > main > section.buy-ticket-form > form > div.form > button.add-participant {
  margin-top: calc(60 * var(--px));
}
html > body > main > section.buy-ticket-form > form > div.form label {
  color: #666666;
}
html > body > main > section.buy-ticket-form > form > div.form p.info {
  margin-top: 20px;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.people > li > ul,
html > body > main > section.buy-ticket-form > form > div.form > ul.fields[data-type=type-legal] {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: calc(30 * var(--px)) calc(16 * var(--px));
}
html > body > main > section.buy-ticket-form > form > div.form > ul.people > li > ul > li.returnable,
html > body > main > section.buy-ticket-form > form > div.form > ul.fields[data-type=type-legal] > li.returnable {
  grid-column: 1/5;
}
@media (max-width: 666px) {
  html > body > main > section.buy-ticket-form > form > div.form > ul.people > li > ul > li.returnable,
  html > body > main > section.buy-ticket-form > form > div.form > ul.fields[data-type=type-legal] > li.returnable {
    grid-column: 1;
  }
}
html > body > main > section.buy-ticket-form > form > div.form > ul.people > li > ul > li.returnable:has(input:checked) > div.help,
html > body > main > section.buy-ticket-form > form > div.form > ul.fields[data-type=type-legal] > li.returnable:has(input:checked) > div.help {
  display: block;
  margin-top: calc(12 * var(--px));
}
html > body > main > section.buy-ticket-form > form > div.form > ul.people > li > ul > li.drop-participant,
html > body > main > section.buy-ticket-form > form > div.form > ul.fields[data-type=type-legal] > li.drop-participant {
  position: static;
}
@media (max-width: 1023px) {
  html > body > main > section.buy-ticket-form > form > div.form > ul.people > li > ul,
  html > body > main > section.buy-ticket-form > form > div.form > ul.fields[data-type=type-legal] {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 666px) {
  html > body > main > section.buy-ticket-form > form > div.form > ul.people > li > ul,
  html > body > main > section.buy-ticket-form > form > div.form > ul.fields[data-type=type-legal] {
    grid-template-columns: 1fr;
    gap: calc(16 * var(--px));
  }
}

/* body/main/section.buy-ticket-form/form/div.form/button.add-participant.scss */
html > body > main > section.buy-ticket-form > form > div.form > button.add-participant {
  position: relative;
  display: flex;
  gap: calc(12 * var(--px));
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  height: 40px;
  width: 213px;
  margin-top: 30px !important;
  color: #000000;
  color: #000000;
  background-color: #FFFFFF;
  padding: 0px;
  border-radius: 10px;
}
html > body > main > section.buy-ticket-form > form > div.form > button.add-participant::before {
  color: #000000;
  content: "+";
  font-size: 1.5em;
}
@media (max-width: 666px) {
  html > body > main > section.buy-ticket-form > form > div.form > button.add-participant {
    margin-top: calc(10 * var(--px));
    margin-bottom: calc(30 * var(--px));
  }
}
html > body > main > section.buy-ticket-form > form > div.form > button.add-participant.too-many::after {
  content: "Превышен лимит на количество бронирований за раз";
  position: absolute;
  top: 50%;
  right: calc(-24 * var(--px));
  width: max-content;
  translate: 100% -50%;
}

/* body/main/section.buy-ticket-form/form/div.form/div.agreement-block.scss */
html > body > main > section.buy-ticket-form > form > div.form > div.agreement-block.agreement-block ul {
  list-style: none;
}
html > body > main > section.buy-ticket-form > form > div.form > div.agreement-block.agreement-block ul li {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  max-width: 900px;
}
html > body > main > section.buy-ticket-form > form > div.form > div.agreement-block.agreement-block ul li:last-child p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: #666666;
}
html > body > main > section.buy-ticket-form > form > div.form > div.agreement-block.agreement-block ul li label {
  display: flex;
  cursor: pointer;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
}
html > body > main > section.buy-ticket-form > form > div.form > div.agreement-block.agreement-block ul li label p::before {
  content: "*";
  color: #FF2D55;
  margin-right: 4px;
  display: none;
}
html > body > main > section.buy-ticket-form > form > div.form > div.agreement-block.agreement-block ul li label[data-required=true] p::before {
  display: inline-block;
}

/* body/main/section.buy-ticket-form/form/div.form/div.company.scss */
html > body > main > section.buy-ticket-form > form > div.form > div.company {
  padding: 24px;
  margin-top: 30px;
  background-color: #F5F5F5;
  border: 1px solid #DADADA;
  border-radius: 8px;
}
html > body > main > section.buy-ticket-form > form > div.form > div.company :focus-visible {
  outline: 1px solid #ffffff;
  outline-offset: 0.25em;
}
html > body > main > section.buy-ticket-form > form > div.form > div.company li {
  position: relative;
}
html > body > main > section.buy-ticket-form > form > div.form > div.company li label {
  position: absolute;
  transition: margin 0.2s ease-in-out, color 0.3s ease-in-out;
  display: block;
  font-size: 12px;
  color: #666666;
}
html > body > main > section.buy-ticket-form > form > div.form > div.company li label.req:before {
  content: "* ";
  color: #FF2D55;
}
html > body > main > section.buy-ticket-form > form > div.form > div.company li input[type=email],
html > body > main > section.buy-ticket-form > form > div.form > div.company li input[type=text] {
  width: 100%;
  border: none;
  border-bottom: 1px solid #DADADA;
  background: transparent;
  padding: 3px 0;
  font-size: 16px;
  outline: none;
  transition: border-bottom 0.2s;
}
html > body > main > section.buy-ticket-form > form > div.form > div.company li input[type=email]:focus,
html > body > main > section.buy-ticket-form > form > div.form > div.company li input[type=text]:focus {
  border-bottom: 1px solid #000000;
}
html > body > main > section.buy-ticket-form > form > div.form > div.company li .field-hint {
  display: block;
  font-size: 12px;
  color: #666666;
  margin-top: 6px;
}
html > body > main > section.buy-ticket-form > form > div.form > div.company li > div.help {
  display: none;
}
html > body > main > section.buy-ticket-form > form > div.form > div.company li:not(.not-empty):not(:has(input:focus)) > label {
  margin-top: calc(8 * var(--px));
}
html > body > main > section.buy-ticket-form > form > div.form > div.company li.not-empty > label, html > body > main > section.buy-ticket-form > form > div.form > div.company li:has(input:focus) > label {
  margin-top: calc(-18 * var(--px));
}
@media (max-width: 666px) {
  html > body > main > section.buy-ticket-form > form > div.form > div.company li.not-empty > label, html > body > main > section.buy-ticket-form > form > div.form > div.company li:has(input:focus) > label {
    margin-top: calc(-8 * var(--px));
  }
}
html > body > main > section.buy-ticket-form > form > div.form > div.company li > input {
  width: 100%;
}
html > body > main > section.buy-ticket-form > form > div.form > div.company.company h3 {
  font-size: 24px !important;
  font-weight: 500;
  margin: 0 0 24px 0;
}
html > body > main > section.buy-ticket-form > form > div.form > div.company.company .fields {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
html > body > main > section.buy-ticket-form > form > div.form > div.company.company .fields li {
  flex: 1 1 50px;
  margin-bottom: 10px;
}
html > body > main > section.buy-ticket-form > form > div.form > div.company.company .fields li.company-name, html > body > main > section.buy-ticket-form > form > div.form > div.company.company .fields li.company-email {
  flex: 1 1 100%;
}
html > body > main > section.buy-ticket-form > form > div.form > div.company.company .fields {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
html > body > main > section.buy-ticket-form > form > div.form > div.company.company .fields li {
  flex: 1 1 50px;
  margin-bottom: 10px;
}
html > body > main > section.buy-ticket-form > form > div.form > div.company.company .fields li.company-name, html > body > main > section.buy-ticket-form > form > div.form > div.company.company .fields li.company-email {
  flex: 1 1 100%;
}
html > body > main > section.buy-ticket-form > form > div.form > div.company.company .fields li.budjet, html > body > main > section.buy-ticket-form > form > div.form > div.company.company .fields li.info-item {
  display: flex;
  align-items: center;
  gap: 4px; /* маленький отступ между текстом и кнопкой */
  flex: 0 1 auto; /* чтобы не растягивалось */
}
html > body > main > section.buy-ticket-form > form > div.form > div.company.company .budjet .info-button,
html > body > main > section.buy-ticket-form > form > div.form > div.company.company .info-item .info-button {
  width: 24px;
  height: 24px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
html > body > main > section.buy-ticket-form > form > div.form > div.company.company .budjet .check-line {
  display: flex;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
}
html > body > main > section.buy-ticket-form > form > div.form > div.company.company .budjet .check-line label {
  font-size: 16px;
  color: #000000;
  margin: 0;
}

/* body/main/section.buy-ticket-form/form/div.form/div.info.scss */
html > body > main > section.buy-ticket-form > form > div.form > div.info {
  border-radius: 10px;
  background-color: #EBEBEB;
  width: 100%;
  height: 200px;
  margin-block: 20px;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-inline: 16px;
}
html > body > main > section.buy-ticket-form > form > div.form > div.info > p {
  color: #000000 !important;
  text-align: center;
  font-size: 16px;
}
html > body > main > section.buy-ticket-form > form > div.form > div.info > p em {
  font-style: normal;
}
html > body > main > section.buy-ticket-form > form > div.form > div.info > p:not(:last-child) {
  margin-bottom: 1em;
}

/* body/main/section.buy-ticket-form/form/div.form/div.promo-container.scss */
html > body > main > section.buy-ticket-form > form > div.form > div.promo-container {
  padding: 24px;
  margin-top: 30px;
  background-color: #F5F5F5;
  border: 1px solid #DADADA;
  border-radius: 8px;
}
html > body > main > section.buy-ticket-form > form > div.form > div.promo-container :focus-visible {
  outline: 1px solid #ffffff;
  outline-offset: 0.25em;
}
html > body > main > section.buy-ticket-form > form > div.form > div.promo-container li {
  position: relative;
}
html > body > main > section.buy-ticket-form > form > div.form > div.promo-container li label {
  position: absolute;
  transition: margin 0.2s ease-in-out, color 0.3s ease-in-out;
  display: block;
  font-size: 12px;
  color: #666666;
}
html > body > main > section.buy-ticket-form > form > div.form > div.promo-container li label.req:before {
  content: "* ";
  color: #FF2D55;
}
html > body > main > section.buy-ticket-form > form > div.form > div.promo-container li input[type=email],
html > body > main > section.buy-ticket-form > form > div.form > div.promo-container li input[type=text] {
  width: 100%;
  border: none;
  border-bottom: 1px solid #DADADA;
  background: transparent;
  padding: 3px 0;
  font-size: 16px;
  outline: none;
  transition: border-bottom 0.2s;
}
html > body > main > section.buy-ticket-form > form > div.form > div.promo-container li input[type=email]:focus,
html > body > main > section.buy-ticket-form > form > div.form > div.promo-container li input[type=text]:focus {
  border-bottom: 1px solid #000000;
}
html > body > main > section.buy-ticket-form > form > div.form > div.promo-container li .field-hint {
  display: block;
  font-size: 12px;
  color: #666666;
  margin-top: 6px;
}
html > body > main > section.buy-ticket-form > form > div.form > div.promo-container li > div.help {
  display: none;
}
html > body > main > section.buy-ticket-form > form > div.form > div.promo-container li:not(.not-empty):not(:has(input:focus)) > label {
  margin-top: calc(8 * var(--px));
}
html > body > main > section.buy-ticket-form > form > div.form > div.promo-container li.not-empty > label, html > body > main > section.buy-ticket-form > form > div.form > div.promo-container li:has(input:focus) > label {
  margin-top: calc(-18 * var(--px));
}
@media (max-width: 666px) {
  html > body > main > section.buy-ticket-form > form > div.form > div.promo-container li.not-empty > label, html > body > main > section.buy-ticket-form > form > div.form > div.promo-container li:has(input:focus) > label {
    margin-top: calc(-8 * var(--px));
  }
}
html > body > main > section.buy-ticket-form > form > div.form > div.promo-container li > input {
  width: 100%;
}
html > body > main > section.buy-ticket-form > form > div.form > div.promo-container > ul.fields {
  display: flex;
  gap: 16px;
  margin-top: 0;
}
html > body > main > section.buy-ticket-form > form > div.form > div.promo-container > ul.fields > li > input#promocode {
  width: 160px;
  height: 40px;
}
html > body > main > section.buy-ticket-form > form > div.form > div.promo-container > ul.fields > li > label {
  translate: 0 6px;
}
html > body > main > section.buy-ticket-form > form > div.form > div.promo-container > ul.fields > li > button {
  position: relative;
  display: flex;
  gap: calc(12 * var(--px));
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  height: 40px;
  color: #000000;
  background: #ffffff;
  padding: 8px 16px;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
html > body > main > section.buy-ticket-form > form > div.form > div.promo-container > ul.fields > li > p {
  translate: 0 6px;
  font-size: 12px;
}
html > body > main > section.buy-ticket-form > form > div.form > div.promo-container > ul.fields > li > p.has-error {
  color: #FF2D55;
}

/* body/main/section.buy-ticket-form/form/div.form/div.ticket.scss */
html > body > main > section.buy-ticket-form > form > div.form > div.ticket.ticket {
  color: #000000;
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  border-radius: 15px;
  min-height: 120px;
  margin-top: 20px;
}
html > body > main > section.buy-ticket-form > form > div.form > div.ticket.ticket .payment {
  background-color: #007AFF;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s ease;
  width: 320px;
  height: 40px;
}
html > body > main > section.buy-ticket-form > form > div.form > div.ticket.ticket .payment:hover {
  opacity: 0.8;
}
html > body > main > section.buy-ticket-form > form > div.form > div.ticket.ticket .payment[data-hide] {
  display: none;
}
html > body > main > section.buy-ticket-form > form > div.form > div.ticket.ticket .ten-minutes {
  margin: 0;
  padding-top: 10px;
  color: #666666;
  font-size: 12px;
}
html > body > main > section.buy-ticket-form > form > div.form > div.ticket.ticket .expand {
  display: none;
}
html > body > main > section.buy-ticket-form > form > div.form > div.ticket.ticket input {
  border: none;
  font-size: 32px;
}
@media (max-width: 768px) {
  html > body > main > section.buy-ticket-form > form > div.form > div.ticket.ticket {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 20px;
  }
}
html > body > main > section.buy-ticket-form > form > div.form > div.ticket.ticket .payment {
  background-color: #007AFF;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s ease;
  width: 320px;
  height: 40px;
}
html > body > main > section.buy-ticket-form > form > div.form > div.ticket.ticket .payment:hover {
  background-color: #007AFF;
}
html > body > main > section.buy-ticket-form > form > div.form > div.ticket.ticket .payment[data-hide] {
  display: none;
}
@media (max-width: 768px) {
  html > body > main > section.buy-ticket-form > form > div.form > div.ticket.ticket .payment {
    width: 100%;
  }
}
html > body > main > section.buy-ticket-form > form > div.form > div.ticket.ticket .ten-minutes {
  margin: 0;
  padding-top: 10px;
  color: #666666;
  font-size: 12px;
}
html > body > main > section.buy-ticket-form > form > div.form > div.ticket.ticket .expand {
  display: none;
}
html > body > main > section.buy-ticket-form > form > div.form > div.ticket.ticket > div.total-price {
  position: relative;
  display: flex;
  height: 48px;
}
html > body > main > section.buy-ticket-form > form > div.form > div.ticket.ticket > div.total-price > p {
  font-size: 32px;
}
@media (max-width: 1000px) {
  html > body > main > section.buy-ticket-form > form > div.form > div.ticket.ticket > div.total-price > p {
    font-size: 24px;
    width: 100%;
  }
}
html > body > main > section.buy-ticket-form > form > div.form > div.ticket.ticket > div.total-price > p[data-value=total_price] {
  color: #000000;
  align-self: center;
}
html > body > main > section.buy-ticket-form > form > div.form > div.ticket.ticket > div.total-price > p[data-value=total_price_before_discount] {
  position: absolute;
  margin-top: -4px;
  font-size: 12px;
  text-decoration: line-through;
  bottom: -8px;
}

/* body/main/section.buy-ticket-form/form/div.form/hgroup.please.scss */
html > body > main > section.buy-ticket-form > form > div.form > hgroup.please {
  margin-top: 30px;
}
html > body > main > section.buy-ticket-form > form > div.form > hgroup.please > p {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* body/main/section.buy-ticket-form/form/div.form/ul.fields-questions.scss */
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions {
  color: #000000;
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: calc(30 * var(--px));
}
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions :focus-visible {
  outline: 1px solid #ffffff;
  outline-offset: 0.25em;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions li {
  position: relative;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions li label {
  position: absolute;
  transition: margin 0.2s ease-in-out, color 0.3s ease-in-out;
  display: block;
  font-size: 12px;
  color: #666666;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions li label.req:before {
  content: "* ";
  color: #FF2D55;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions li input[type=email],
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions li input[type=text] {
  width: 100%;
  border: none;
  border-bottom: 1px solid #DADADA;
  background: transparent;
  padding: 3px 0;
  font-size: 16px;
  outline: none;
  transition: border-bottom 0.2s;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions li input[type=email]:focus,
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions li input[type=text]:focus {
  border-bottom: 1px solid #000000;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions li .field-hint {
  display: block;
  font-size: 12px;
  color: #666666;
  margin-top: 6px;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions li > div.help {
  display: none;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions li:not(.not-empty):not(:has(input:focus)) > label {
  margin-top: calc(8 * var(--px));
}
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions li.not-empty > label, html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions li:has(input:focus) > label {
  margin-top: calc(-18 * var(--px));
}
@media (max-width: 666px) {
  html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions li.not-empty > label, html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions li:has(input:focus) > label {
    margin-top: calc(-8 * var(--px));
  }
}
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions li > input {
  width: 100%;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions > li {
  position: relative;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions > li > label {
  position: absolute;
  pointer-events: none;
  transition: margin 0.2s ease-in-out;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions > li > input {
  width: 100%;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions > li:has(input:focus) > label, html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions > li:has(input:not(:placeholder-shown)) > label {
  margin-top: calc(-18 * var(--px));
}
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions > li > details {
  padding-bottom: calc(20 * var(--px));
}
@media (max-width: 666px) {
  html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions > li > details {
    padding-bottom: calc(5 * var(--px));
  }
}
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions > li > details > summary {
  display: flex;
  justify-content: space-between;
  height: calc(20 * var(--px));
}
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions > li > details > summary::after {
  content: "+";
  font-weight: 900;
  font-size: 2em;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions > li > details[open] > summary::after {
  content: "–";
  translate: 0 calc(-2 * var(--px));
}
@media (max-width: 666px) {
  html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions > li > details[open] > summary::after {
    translate: 0 calc(-1 * var(--px));
  }
}
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions > li > details[open] > fieldset {
  margin-top: calc(20 * var(--px));
}
@media (max-width: 666px) {
  html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions > li > details[open] > fieldset {
    margin-top: calc(4 * var(--px));
    margin-bottom: calc(8 * var(--px));
  }
}
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions > li > details > fieldset {
  display: flex;
  flex-direction: column;
  gap: calc(10 * var(--px));
  border: none;
  margin: 0;
  padding: 0;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions > li > details > fieldset > label {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer !important; /* Курсор руки на всей строке */
  /* --- Начало стилизации Radio Input --- */
  /* --- Конец стилизации Radio Input --- */
}
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions > li > details > fieldset > label > input[type=radio] {
  /* Сброс стандартных стилей */
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  /* Размеры и форма */
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  border-radius: 50% !important;
  /* Цвета (неактивное состояние) */
  border: 1px solid #d1d1d1 !important;
  background-color: #fff !important;
  /* Позиционирование */
  margin: 0 12px 0 0 !important; /* Отступ справа от кружка до текста */
  position: relative !important;
  outline: none !important;
  transition: all 0.2s ease !important;
  /* Белая точка внутри (через псевдо-элемент) */
  /* Ховер эффект */
  /* Активное состояние (Checked) */
}
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions > li > details > fieldset > label > input[type=radio]::before {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(0) !important; /* Скрыта */
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background-color: #fff !important;
  transition: transform 0.2s ease !important;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions > li > details > fieldset > label > input[type=radio]:hover {
  border-color: #b0b0b0 !important;
  background-color: #f7f7f7 !important;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions > li > details > fieldset > label > input[type=radio]:checked {
  background-color: #3b82f6 !important; /* Синий фон */
  border-color: #3b82f6 !important;
  /* Показываем белую точку */
}
html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions > li > details > fieldset > label > input[type=radio]:checked::before {
  transform: translate(-50%, -50%) scale(1) !important;
}
@media (max-width: 1023px) {
  html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 666px) {
  html > body > main > section.buy-ticket-form > form > div.form > ul.fields-questions {
    grid-template-columns: 1fr;
    gap: calc(20 * var(--px));
  }
}

/* body/main/section.buy-ticket-form/form/div.form/ul.people.scss */
html > body > main > section.buy-ticket-form > form > div.form > ul.people {
  display: flex;
  flex-direction: column;
  gap: calc(30 * var(--px));
}
html > body > main > section.buy-ticket-form > form > div.form > ul.people :focus-visible {
  outline: 1px solid #ffffff;
  outline-offset: 0.25em;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.people li {
  position: relative;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.people li label {
  position: absolute;
  transition: margin 0.2s ease-in-out, color 0.3s ease-in-out;
  display: block;
  font-size: 12px;
  color: #666666;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.people li label.req:before {
  content: "* ";
  color: #FF2D55;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.people li input[type=email],
html > body > main > section.buy-ticket-form > form > div.form > ul.people li input[type=text] {
  width: 100%;
  border: none;
  border-bottom: 1px solid #DADADA;
  background: transparent;
  padding: 3px 0;
  font-size: 16px;
  outline: none;
  transition: border-bottom 0.2s;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.people li input[type=email]:focus,
html > body > main > section.buy-ticket-form > form > div.form > ul.people li input[type=text]:focus {
  border-bottom: 1px solid #000000;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.people li .field-hint {
  display: block;
  font-size: 12px;
  color: #666666;
  margin-top: 6px;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.people li > div.help {
  display: none;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.people li:not(.not-empty):not(:has(input:focus)) > label {
  margin-top: calc(8 * var(--px));
}
html > body > main > section.buy-ticket-form > form > div.form > ul.people li.not-empty > label, html > body > main > section.buy-ticket-form > form > div.form > ul.people li:has(input:focus) > label {
  margin-top: calc(-18 * var(--px));
}
@media (max-width: 666px) {
  html > body > main > section.buy-ticket-form > form > div.form > ul.people li.not-empty > label, html > body > main > section.buy-ticket-form > form > div.form > ul.people li:has(input:focus) > label {
    margin-top: calc(-8 * var(--px));
  }
}
html > body > main > section.buy-ticket-form > form > div.form > ul.people li > input {
  width: 100%;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.people > li {
  counter-increment: people-counter;
  position: relative;
  color: #000000;
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 10px;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.people > li.template {
  display: none;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.people > li .email {
  grid-column-start: 1;
  grid-column-end: 5;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.people > li .returnable {
  grid-column: 1;
  grid-row: 3;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.people > li .info-item {
  grid-column: 2;
  grid-row: 3;
}
@media (max-width: 768px) {
  html > body > main > section.buy-ticket-form > form > div.form > ul.people > li {
    display: flex;
    flex-direction: column;
    gap: calc(15 * var(--px));
  }
  html > body > main > section.buy-ticket-form > form > div.form > ul.people > li .email, html > body > main > section.buy-ticket-form > form > div.form > ul.people > li .returnable, html > body > main > section.buy-ticket-form > form > div.form > ul.people > li .info-item {
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100%;
  }
}
html > body > main > section.buy-ticket-form > form > div.form > ul.people > li::before {
  display: block;
  margin-bottom: calc(24 * var(--px));
  font-size: 18px !important;
  color: #000000 !important;
  text-transform: unset !important;
  color: #666666;
  text-align: left !important;
  font-weight: normal;
  font-size: 13px;
  content: "Участник №" counter(people-counter);
}
@media (max-width: 666px) {
  html > body > main > section.buy-ticket-form > form > div.form > ul.people > li::before {
    margin-bottom: 0;
  }
}
html > body > main > section.buy-ticket-form > form > div.form > ul.people > li.returnable {
  display: block;
  margin-top: 15px;
  padding: 20px;
  border-radius: 8px;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.people > li .drop-participant {
  position: absolute;
  top: calc(20 * var(--px));
  right: calc(20 * var(--px));
  z-index: 10;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.people > li .drop-participant button.drop-participant {
  background: none;
  border: none;
  font-size: calc(30 * var(--px));
  line-height: 1;
  cursor: pointer;
  color: #666666;
  padding: calc(10 * var(--px));
  transition: opacity 0.2s;
}
html > body > main > section.buy-ticket-form > form > div.form > ul.people > li .drop-participant button.drop-participant:hover {
  opacity: 0.7;
}