body {
  --loader-01: rgba(0, 0, 0, 0.1);
  --loader-05: rgba(0, 0, 0, 0.5);
}
a {
  color: #3793aa;
}
body,
button,
h1,
h2,
h3,
input,
textarea,
select {
  font-family: Roboto, Arial, sans-serif;
}
h1,
h2,
h3 {
  font-weight: 300;
}
body,
button,
input,
textarea,
select {
  font-size: 16px;
}
body {
  margin: 0;
}
.loader {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 5px;
  background-color: var(--loader-01);
  animation: dot-flashing 1s infinite linear;
  animation-delay: 0.15s;
  margin-left: 13px;
  display: inline-block;
}
.loader::before,
.loader::after {
  content: "";
  background-color: var(--loader-01);
  display: inline-block;
  position: absolute;
  border-radius: 5px;
  top: 0;
  width: 8px;
  height: 8px;
}
.loader::before {
  left: -13px;
  animation: dot-flashing 1s infinite linear;
  animation-delay: 0s;
}
.loader::after {
  left: 13px;
  animation: dot-flashing 1s infinite linear;
  animation-delay: 0.3s;
}
@keyframes dot-flashing {
  0% {
    background-color: var(--loader-01);
  }
  20% {
    background-color: var(--loader-01);
  }
  60% {
    background-color: var(--loader-05);
  }
  100% {
    background-color: var(--loader-01);
  }
}
.link {
  color: #3793aa;
}
.link:hover {
  color: black;
}
.link:active {
  transform: scale(0.95);
}
.button {
  --loader-01: rgba(255, 255, 255, 0.2);
  --loader-05: rgba(255, 255, 255, 0.7);
  background-color: #43b8d5;
  font-weight: 500;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 0.6em 0.8em;
  text-decoration: none;
  display: inline-block;
}
.button:hover {
  background-color: #3793aa;
  color: #fff;
  cursor: pointer;
}
.button:active {
  transform: scale(0.95);
}
.button--inactive {
  pointer-events: none;
}
.button--disabled {
  pointer-events: none;
  opacity: 0.5;
}
.button--red {
  background-color: #C33D3D;
}
.button--red:hover {
  background-color: #902525;
}
.button--loader {
  position: relative;
}
.button--loader[disabled] {
  opacity: 0.6;
  pointer-events: none;
}
.buttonLoader__loader {
  display: inline-block;
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% - 15px);
}
.linkButton {
  padding: 0;
  background: transparent;
  border: none;
  border-bottom: 1px dotted;
  cursor: pointer;
  text-decoration: none ;
}
.linkButton:hover {
  color: black;
}
.linkButton:active {
  transform: scale(0.95);
}
.blueLinkButton {
  padding: 0;
  background: transparent;
  border: none;
  border-bottom: 1px dotted;
  cursor: pointer;
  text-decoration: none ;
  color: #3793aa;
}
.blueLinkButton:hover {
  color: black;
}
.blueLinkButton:active {
  transform: scale(0.95);
}
.blueLinkIconButton {
  padding: 0;
  background: transparent;
  border-bottom: 1px dotted;
  cursor: pointer;
  text-decoration: none ;
  color: #3793aa;
  border: none;
}
.blueLinkIconButton:hover {
  color: black;
}
.blueLinkIconButton:active {
  transform: scale(0.95);
}
.blueLinkIconButton span {
  vertical-align: middle;
}
.blueLinkIconButton .icon {
  margin-right: 8px;
}
.blueLinkIconButton span:last-child {
  border-bottom: 1px dotted;
}
.blueLinkButton--hoverRed:hover {
  color: red;
}
.blueLinkButton--disabled {
  pointer-events: none;
}
.input {
  border: 1px solid #43b8d5;
  border-radius: 7px;
  font-weight: 300;
  box-sizing: border-box;
  padding: 9.5px;
}
.input--loading {
  pointer-events: none;
}
.input--saving {
  background-color: #f6f6f6;
  pointer-events: none;
}
.input[disabled] {
  background-color: #f6f6f6;
  pointer-events: none;
}
.input--w100 {
  width: 100%;
}
.input--medium {
  width: 350px;
}
@media (max-width: 500px) {
  .input--medium {
    width: 100%;
  }
}
.input--large {
  width: 100%;
  max-width: 500px;
}
.input--small {
  width: 100px;
}
.input--error {
  border: 1px solid #C33D3D !important;
  outline: none;
}
.textarea {
  border: 1px solid #43b8d5;
  border-radius: 7px;
  font-weight: 300;
  box-sizing: border-box;
  padding: 0.75em;
}
.textarea--medium {
  width: 350px;
  height: 100px;
}
.textarea--disabled {
  background-color: #f6f6f6;
  pointer-events: none;
}
.textarea--error {
  border: 1px solid #C33D3D !important;
  outline: none;
}
.radio {
  padding: 0;
}
.radio span {
  vertical-align: middle;
  font-family: Roboto, Arial, sans-serif;
  font-weight: 300;
}
.radio .icon {
  margin-right: 8px;
}
.select {
  appearance: none;
  border: 1px solid #43b8d5;
  border-radius: 7px;
  font-weight: 300;
  box-sizing: border-box;
  padding: 9.5px;
  cursor: pointer;
  background-color: white;
  background-image: url("icons/down-small-black.svg");
  background-repeat: no-repeat;
  background-position: center right 10px;
  color: #000;
}
.select--200 {
  width: 200px;
}
.select--saving {
  background-color: #f6f6f6;
  pointer-events: none;
}
.select--error {
  border: 1px solid #C33D3D !important;
  outline: none;
}
.select--medium {
  width: 350px;
}
@media (max-width: 500px) {
  .select--medium {
    width: 100%;
  }
}
.errorsList {
  list-style: none;
  padding: 0;
  margin: 0;
}
.errorsList li {
  color: #C33D3D;
  margin-bottom: 15px ;
}
button {
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
}
.scaleOnActive:active {
  transform: scale(0.95);
}
.mb8 {
  margin-bottom: 8px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb35 {
  margin-bottom: 35px;
}
.mb50 {
  margin-bottom: 50px;
}
.mr8 {
  margin-right: 8px;
}
.mr15 {
  margin-right: 15px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mr30 {
  margin-right: 30px;
}
.op50 {
  opacity: 0.5;
}
.lh40 {
  line-height: 40px;
}
.colorRed {
  color: #C33D3D;
}
.pointerSwitcher .pointerSwitcher__hover {
  display: none;
}
.pointerSwitcher:hover .pointerSwitcher__idle {
  display: none;
}
.pointerSwitcher:hover .pointerSwitcher__hover {
  display: inline-block;
}
a {
  color: #3793aa;
}
a:hover {
  color: black;
}
a:active {
  transform: scale(0.95);
}
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s ease;
}
.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}
.notifications {
  position: fixed;
  top: 15px;
  width: 100%;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  height: 1px;
}
.notifications__itemWrapper {
  text-align: center;
  margin: 0 15px;
}
.notifications__item {
  background-color: #eee;
  color: #444;
  display: inline-flex;
  padding: 15px 15px 15px 20px;
  border-radius: 7px;
  gap: 15px;
  line-height: 1.5em;
  text-align: left;
}
.notifications__item button {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-size: 12px 12px;
  border-radius: 3px;
  background-position: center;
  opacity: 0.5;
}
.notifications__item button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.notifications__item button:active {
  background-color: rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
}
.notifications__item--error {
  color: #9f4848;
  background-color: #ffdede;
}
.notifications__item--success {
  color: #489f4c;
  background-color: #ddffdd;
}
.notifications__item--warning {
  color: #967431;
  background-color: #FDE2AD;
}
li {
  line-height: 1.5em;
  font-weight: 300;
}
.logo {
  background-image: url("logo.svg");
  background-size: contain;
  display: inline-block;
  aspect-ratio: 3.9193;
}
.rootPage {
  text-align: center;
}
.sideMargin {
  margin: 0 30px;
}
@media (max-width: 500px) {
  .sideMargin {
    margin: 0 15px;
  }
}
@media (max-width: 360px) {
  .sideMargin {
    margin: 0 7px;
  }
}
.horMargin {
  margin-bottom: 80px;
}
@media (max-width: 1100px) {
  .horMargin {
    margin-bottom: 60px;
  }
}
@media (max-width: 800px) {
  .horMargin {
    margin-bottom: 40px;
  }
}
.topMargin {
  margin-bottom: 60px;
}
@media (max-width: 1200px) {
  .topMargin {
    margin-bottom: 40px;
  }
}
@media (max-width: 800px) {
  .topMargin {
    margin-bottom: 30px;
  }
}
.rootPage__logoLink {
  text-decoration: none;
}
.rootPage__logoImg {
  width: 243px;
}
@media (max-width: 1200px) {
  .rootPage__logoImg {
    width: 180px;
  }
}
@media (max-width: 800px) {
  .rootPage__logoImg {
    width: 150px;
  }
}
.rootPage_user {
  display: inline-block;
  width: 48px;
  height: 48px;
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  position: absolute;
  right: 67px;
  top: 67px;
}
.rootPage_user:hover {
  transform: scale(1.05);
}
.rootPage_user:active {
  transform: scale(0.95);
}
@media (max-width: 1200px) {
  .rootPage_user {
    width: 32px;
    height: 32px;
    right: 45px;
    top: 45px;
  }
}
@media (max-width: 800px) {
  .rootPage_user {
    right: 33px;
    top: 33px;
  }
}
@media (max-width: 360px) {
  .rootPage_user {
    position: initial;
    margin-left: 30px;
    text-decoration: none;
  }
}
.rootPage__title {
  font-size: 64px;
  font-weight: 500;
  margin-top: 0;
}
@media (max-width: 1200px) {
  .rootPage__title {
    font-size: 50px;
  }
}
@media (max-width: 800px) {
  .rootPage__title {
    font-size: 40px;
  }
}
.bigText__line {
  font-size: 40px;
  font-weight: 100;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.65em;
}
@media (max-width: 1200px) {
  .bigText__line {
    font-size: 32px;
  }
}
@media (max-width: 800px) {
  .bigText__line {
    font-size: 24px;
  }
}
.rootActions {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 530px) {
  .rootActions {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .rootActions__create {
    order: 0;
  }
  .rootActions__features {
    order: 1;
  }
  .rootActions__tariffs {
    order: 2;
  }
}
.mainButton {
  --loader-01: rgba(255, 255, 255, 0.2);
  --loader-05: rgba(255, 255, 255, 0.7);
  background-color: #43b8d5;
  font-weight: 500;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 0.6em 0.8em;
  text-decoration: none;
  display: inline-block;
  border-radius: 10px;
  width: 155px;
}
.mainButton:hover {
  background-color: #3793aa;
  color: #fff;
  cursor: pointer;
}
.mainButton:active {
  transform: scale(0.95);
}
@media (max-width: 530px) {
  .mainButton--major {
    width: 200px;
  }
}
.mainButton--minor {
  background-color: #dfdfdf;
  color: #333;
}
@media (max-width: 530px) {
  .mainButton--minor {
    background-color: transparent;
    height: initial;
    width: auto;
    color: #2B85B8;
    text-decoration: underline;
    font-weight: 400;
  }
}
.mainButton--major {
  height: 55px;
}
.iconSmile {
  background-image: url("iconSmile.svg");
  width: 74px;
  height: 74px;
}
.iconCart {
  background-image: url("iconCart.svg");
  width: 81px;
  height: 81px;
}
.iconClip {
  background-image: url("iconClip.svg");
  width: 71px;
  height: 82px;
}
.iconImage {
  background-image: url("iconImage.svg");
  width: 66px;
  height: 58px;
}
.iconArrs {
  background-image: url("iconArrs.svg");
  width: 73px;
  height: 76px;
}
.iconPig {
  background-image: url("iconPig.svg");
  width: 85px;
  height: 86px;
}
.iconVk {
  background-image: url("vk.svg");
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  display: inline-block;
}
.iconTelegram {
  background-image: url("telegram.svg");
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  display: inline-block;
}
.iconVMarkGreen {
  background-image: url("v-mark-green.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 18px;
  height: 13px;
}
.iconUser {
  background-image: url("user.svg");
}
.iconUserSmall {
  background-image: url("user-small.svg");
}
.iconHome {
  background-image: url("home.svg");
}
.iconMenu {
  background-image: url("menu.svg");
}
.rootFeatures {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
@media (max-width: 1000px) {
  .rootFeatures {
    gap: 40px;
  }
}
@media (max-width: 900px) {
  .rootFeatures {
    max-width: 550px;
    gap: 30px;
  }
}
.feature {
  flex: 0 0 calc((100% - 60px) / 2);
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 900px) {
  .feature {
    flex: 0 0 100%;
  }
}
@media (max-width: 500px) {
  .feature {
    flex-direction: column;
    gap: 0;
  }
}
.feature__icon {
  flex: 0 0 100px;
  display: flex;
  justify-content: center;
}
@media (max-width: 1100px) {
  .feature__icon {
    flex: 0 0 80px;
  }
}
@media (max-width: 1100px) {
  .feature__icon div {
    transform: scale(0.8);
  }
}
.feature__text {
  text-align: left;
  font-family: Roboto, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.5em;
}
@media (max-width: 500px) {
  .feature__text {
    text-align: center;
  }
}
.feature__headingText {
  font-size: 24px;
  margin-bottom: 8px;
}
.feature__mainText {
  font-size: 16px;
}
.devices {
  background-image: url("rootBg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  max-height: 727px;
  max-width: 2850px;
  margin: 0 auto;
  text-align: center;
}
.devices__image {
  display: inline-block;
  background-image: url("devices.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  max-width: 1446px;
  aspect-ratio: 1.908;
}
.rootDemo {
  margin-top: 20px;
}
.rootDemo__link {
  font-size: 24px;
  font-weight: 300;
  text-decoration: none;
  border-bottom: 1px solid;
  display: inline-block;
}
@media (max-width: 1000px) {
  .rootDemo__link {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .rootDemo__link {
    font-size: 16px;
  }
}
.tariffs {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  --side: 15px;
}
@media (max-width: 1300px) {
  .tariffs {
    gap: 15px;
  }
}
@media (max-width: 1100px) {
  .tariffs {
    --side: 10px;
  }
}
.tariffs__item {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  border: 2px solid #000;
  border-radius: 10px;
  width: calc((100% - 60px) / 3);
  max-width: 500px;
  text-align: left;
}
@media (max-width: 1000px) {
  .tariffs__item {
    width: 100%;
    max-width: 700px;
  }
}
.tariffs__heading {
  padding: 15px var(--side);
  font-size: 32px;
  font-weight: 300;
  border-bottom: 1px dotted #ccc;
}
.tariffs__featureList {
  flex-grow: 1;
}
.tariffs__featureList {
  padding: 0;
  margin: 0;
  list-style: none;
}
.tariffs__feature {
  padding: 10px var(--side);
  margin: 0;
  display: flex;
  gap: 10px;
  line-height: 1.5em;
  border-bottom: 1px dotted #ccc;
  font-size: 16px;
}
@media (max-width: 1200px) {
  .tariffs__feature {
    font-size: 14px;
  }
}
.tariffs__feature .icon {
  height: 1.4em;
  background-position: center;
}
.tariffs__bottom {
  padding: 0 var(--side);
}
.tariffs__prices {
  margin: 30px 0;
}
.tariffs__priceHolder {
  height: 45px;
  position: relative;
}
.tariffs__priceMainRow {
  position: absolute;
  width: 100%;
  display: flex;
  top: 11px;
  font-size: 24px;
  font-weight: 400;
  transition: top 200ms ease-out;
}
@media (max-width: 1200px) {
  .tariffs__priceMainRow {
    font-size: 20px;
  }
}
@media (max-width: 1100px) {
  .tariffs__priceMainRow {
    font-size: 18px;
  }
}
.tariffs__priceHolder--hint .tariffs__priceMainRow {
  top: 0;
}
.tariffs__pricePerMonth {
  flex-grow: 1;
}
.tariffs__discount {
  font-weight: 500;
  color: #27B012;
}
.tariffs__priceHint {
  position: absolute;
  top: 20px;
  font-size: 12px;
  opacity: 0;
  transition: opacity 200ms ease-out, top 200ms ease-out;
}
.tariffs__priceHolder--hint .tariffs__priceHint {
  top: 30px;
  opacity: 1;
}
.tariffs__button {
  --loader-01: rgba(255, 255, 255, 0.2);
  --loader-05: rgba(255, 255, 255, 0.7);
  background-color: #43b8d5;
  font-weight: 500;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 0.6em 0.8em;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
}
.tariffs__button:hover {
  background-color: #3793aa;
  color: #fff;
  cursor: pointer;
}
.tariffs__button:active {
  transform: scale(0.95);
}
.tariffs__button--inactive {
  background-color: #eee;
  color: #000;
  pointer-events: none;
}
.tabSelector {
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  display: inline-block;
  overflow: hidden;
}
.tabSelector--smallWide {
  display: flex;
}
.tabSelector__button {
  display: inline-block;
  padding: 10px 15px;
  color: #737373;
  border-right: 1px solid #e1e1e1;
  text-decoration: none;
}
.tabSelector__button--smallWide {
  padding: 3px 7px;
  flex-grow: 1;
}
@media (max-width: 1200px) {
  .tabSelector__button--smallWide {
    font-size: 14px;
  }
}
@media (max-width: 1000px) {
  .tabSelector__button--smallWide {
    font-size: 12px;
  }
}
.tabSelector__button:last-child {
  border-right: none;
}
.tabSelector__button--selected {
  background-color: #e1e1e1;
}
.footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  color: #8a8a8a;
  font-size: 14px;
}
.footer li {
  line-height: 1em;
  font-weight: 400;
}
.footer--left .footerItems {
  justify-content: left;
}
@media (max-width: 900px) {
  .footer--mobilePlaceholder {
    margin-bottom: 65px;
  }
}
.footerLink {
  color: #8a8a8a;
}
.footerItems {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.footerBanks {
  width: 363px;
  max-width: 100%;
  aspect-ratio: 11.70967742;
  display: inline-block;
  background-image: url("banks.svg");
  background-size: contain;
  background-repeat: no-repeat;
  filter: grayscale();
  opacity: 0.5;
}
.formPage {
  background-color: #e5e5e5;
  margin: 0;
  min-height: 100vh;
}
.formPage__window {
  max-width: 425px;
  margin: 0 auto;
  min-height: 100vh;
  background-color: white;
  padding: 60px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 425px) {
  .formPage__window {
    padding: 30px;
    gap: 20px;
  }
}
@media (max-width: 360px) {
  .formPage__window {
    padding: 15px;
  }
}
.formPage__logoImg {
  width: 200px;
  margin-bottom: 20px;
}
@media (max-width: 425px) {
  .formPage__logoImg {
    margin-bottom: 0;
  }
}
@media (max-width: 360px) {
  .formPage__logoImg {
    width: 150px;
  }
}
.formPage__heading {
  font-size: 32px;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 425px) {
  .formPage__heading {
    font-size: 28px;
  }
}
@media (max-width: 360px) {
  .formPage__heading {
    font-size: 20px;
    font-weight: 400;
  }
}
.formPage__form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 425px) {
  .formPage__form {
    gap: 20px;
  }
}
.formPage__fieldRow {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.formPage__info {
  font-weight: 300;
  line-height: 1.5em;
}
.formPage__label {
  display: block;
  font-weight: 300;
  line-height: 1.5em;
}
.formPage__error {
  display: block;
  margin-bottom: 8px;
  font-weight: 300;
  line-height: 1.5em;
  color: #C33D3D;
}
.formPage__input {
  padding: 0.75em;
  width: 100%;
}
.formPage__domainWrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.formPage__domainPostfix {
  position: absolute;
  top: 13px;
  right: 13px;
}
.formPage__input--domain {
  padding-right: 100px;
  background: linear-gradient(0, #eee, #eee) top 0 right 0 / 88px 45px no-repeat;
}
.formPage__input--error {
  border: 1px solid #C33D3D;
}
.formPage__helpBox {
  background-color: #ededed;
  padding: 0.7em 1em;
  border-radius: 7px;
  margin: 0;
}
@media (max-width: 360px) {
  .formPage__helpBox {
    font-size: 12px;
    padding: 0.5em 1em;
    list-style: none;
  }
}
.formPage__helpItem {
  font-weight: 300;
  color: #6b6b6b;
  margin-left: 1em;
  line-height: 1.5em;
}
@media (max-width: 360px) {
  .formPage__helpItem {
    margin-left: 0em;
  }
}
.formPage__button {
  position: relative;
}
.formPage__button[disabled] {
  opacity: 0.6;
  pointer-events: none;
}
.formPage__buttonLoader {
  display: inline-block;
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% - 15px);
}
.formPage__buttonColumn {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}
.formPage__agreeBox {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.formPage__agree {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5em;
  display: block;
  cursor: pointer;
}
.formPage__agree input {
  vertical-align: middle;
  margin-left: 0;
}
.formPage__agree span {
  vertical-align: middle;
}
.widthLimit {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 16px;
}
.helpSides {
  display: flex;
}
.helpMenuWrapper {
  flex: 0 0 300px;
}
@media (max-width: 1000px) {
  .helpMenuWrapper {
    flex: 0 0 250px;
  }
}
@media (max-width: 900px) {
  .helpMenuWrapper {
    position: fixed;
    top: 0;
    width: 300px;
    height: 100vh;
    background-color: #fff;
    left: -300px;
    transition: left 300ms;
    border-right: 1px solid #ddd;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .helpMenuWrapper--visible {
    left: 0;
  }
}
.helpLogo {
  width: 150px;
  margin: 32px 0 32px 0;
}
.helpMain {
  flex-grow: 1;
}
.helpMain p {
  line-height: 1.5em;
  font-weight: 300;
}
.helpMain__h1 {
  font-size: 40px;
  margin: 0.8em 0 0.6em 0;
}
@media (max-width: 900px) {
  .helpMain__h1 {
    font-size: 32px;
    margin: 0.7em 0 0.4em 0;
  }
}
.helpMain__h1--root {
  margin-top: 0;
}
.helpMain h2 {
  font-size: 28px;
  margin: 1em 0 0.5em 0;
}
@media (max-width: 900px) {
  .helpMain h2 {
    font-size: 24px;
  }
}
.helpMenu {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  max-width: 300px;
}
.helpMenu .helpMenu {
  margin: 0 0 0 20px;
  display: none;
}
.helpMenu li {
  margin: 0;
}
.helpMenu a {
  font-weight: 400;
  display: block;
  padding: 7px 0;
  text-decoration: underline #B9D9E1;
}
.helpMenu a:active {
  transform: scale(0.95);
}
.helpMenu a:hover {
  background-color: #f5f5f5;
  text-decoration: unset;
  padding: 7px 15px;
  position: relative;
  left: -15px;
  border-radius: 5px;
}
.helpMenu__item--selected > a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}
.helpMenu__item--selected > .helpMenu {
  display: block;
}
.hr {
  border-bottom: 1px solid #ddd;
  height: 1px;
}
.mobileBar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  background-color: #fff;
  padding-bottom: env(safe-area-inset-bottom);
  border-top: 1px solid #eee;
  z-index: 20;
  display: none;
}
@media (max-width: 900px) {
  .mobileBar {
    display: flex;
  }
}
.mobileBar__item {
  display: block;
  flex-grow: 1;
  padding: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  cursor: pointer;
}
.docMain h1 {
  font-size: 46px;
  margin: 0 0 1em 0;
}
@media (max-width: 900px) {
  .docMain h1 {
    font-size: 32px;
  }
}
.docMain h2 {
  font-size: 32px;
}
@media (max-width: 900px) {
  .docMain h2 {
    font-size: 24px;
  }
}
.docMain p {
  line-height: 1.5em;
  font-weight: 300;
}
.docLogo {
  width: 180px;
  margin: 50px 0 50px 0;
}
@media (max-width: 900px) {
  .docLogo {
    width: 150px;
    margin: 30px 0 30px 0;
  }
}
iframe.video {
  width: 100%;
  height: auto;
  aspect-ratio: 1.77777;
}
.yandexCaptchaLegal {
  margin-top: auto;
}
.yandexCaptchaLegal a {
  color: #999;
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}
.yandexCaptchaLegal a:hover {
  color: #000;
}
