@charset "UTF-8";

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

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

html,
body {
  line-height: 1;
  height: 100%;
  width: 100%;
  font-size: 100%;
}

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

:focus,
:active {
  outline: none;
}

a {
  color: inherit;
}

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

a,
a:visited,
a:hover {
  text-decoration: none;
}

nav,
footer,
header,
aside {
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

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

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
}

input,
select {
  color: currentColor;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

textarea {
  overflow-y: auto;
  resize: none;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  -moz-transition: 0.3s;
  transition: 0.3s;
}

input::placeholder,
textarea::placeholder {
  transition: 0.3s;
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  opacity: 0;
}

input:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}

button {
  background-color: transparent;
  cursor: pointer;
  color: currentColor;
}

:root {
  --color-text: #292929;
  --color-main: #ffffff;
  --color-black: #000;
  --color-accent: #fff000;
  --color-rare: #ff0000;
  --color-base: #0072ff;
  --color-base2: #009dff;
  --color-dark: #1c1c1c;
  --color-dark2: #494949;
  --color-dark3: #a4a4a4;
  --color-dark4: #cdced2;
  --color-dark5: #e8e8e8;
  --color-dark6: #f7f7f7;
  --color-muted: #e5f5ff;
  --color-muted1: #e6efee;
  --color-hover: #0066e3;
  --color-red: #fc5e52;
  --color-other: #046057;
  --color-additional1: #ffcd62;
  --color-additional2: #16bca2;
  --color-additional3: #fc5e52;
  --color-additional4: #fffaef;
  --color-additional5: #e6fbf7;
  --color-additional6: #ffefee;
  --with-container: 1200px;
}

html {
  scroll-behavior: smooth;
  line-height: inherit;
}

* {
  padding: 0;
  line-height: inherit;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'SF Pro Display';
  font-weight: 400;
  text-rendering: optimizeSpeed;
  color: var(--color-text);
}

body.fixed {
  overflow: hidden !important;
}

body.lock {
  overflow: hidden !important;
}

input,
button {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

body.down header.clone {
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

a {
  transition: 0.3s;
}

.main {
  flex: 1 0 auto;
}

.footer,
.header {
  flex-shrink: 0;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon svg {
  width: 100%;
  height: 100%;
  transition: 0.3s;
}

.icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.iresponsive {
  position: relative;
}

.iresponsive img,
.iresponsive video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.iresponsive iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.container {
  max-width: var(--with-container);
  margin: 0 auto;
  padding: 0 15px;
}

.input-grey {
  overflow: hidden;
  display: block;
  position: relative;
  width: 100%;
}

.input-grey.error input {
  border-color: #DB1F5D;
}

.input-grey.error .input-grey__error {
  display: block;
}

.input-grey__error {
  padding-top: 3px;
  text-align: right;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #DB1F5D;
  display: none;
}

.input-grey__title {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #6D7885;
  padding-bottom: 8px;
  display: block;
}

.input-grey__title b {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  margin-left: 8px;
  color: #DB1F5D;
}

.input-grey input,
.input-grey textarea {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #F2F3F5;
  min-height: 48px;
  transition: .2s linear;
  border: 0.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  padding: 0 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #818C99;
}

.input-grey input::-moz-placeholder, .input-grey textarea::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #818C99;
}

.input-grey input::placeholder,
.input-grey textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #818C99;
}

.input-grey textarea {
  font-weight: normal;
}

.input-grey .pass-show-icon {
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: 8px;
  cursor: pointer;
  right: 10px;
}

.input-grey .pass-show-icon.js-active .hide {
  opacity: 1;
}

.input-grey .pass-show-icon.js-active .show {
  opacity: 0;
}

.input-grey .pass-show-icon svg {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  fill: #cdced2;
}

.input-grey .pass-show-icon svg.hide {
  opacity: 0;
}

.input-grey__placeholder {
  transition: 0.1s linear;
  pointer-events: none;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  top: 50%;
  width: calc(100% - 17px);
  border-radius: 12px 12px 0 0;
  left: 16px;
  padding-top: 4px;
  transform: translateY(-50%);
  cursor: text;
}

.input-grey__placeholder svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  transition: 0.1s linear;
}

.input-grey__placeholder span {
  transition: 0.1s linear;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}

.radio {
  position: relative;
  cursor: pointer;
}

.radio label {
  cursor: pointer;
  position: relative;
}

.radio label:hover span {
  color: var(--color-base);
}

.radio label:hover span::before {
  border-color: var(--color-base);
}

.radio input {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background: transparent;
  z-index: 2;
  font-size: 0;
  cursor: pointer;
}

.radio input:checked ~ span::after {
  opacity: 1;
  transform: translateY(-50%);
}

.radio input:checked ~ span::before {
  border-color: #1C7AA7;
}

.radio span {
  display: inline-block;
  padding-left: 36px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  min-height: 22px;
  color: #000;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.3s;
}

.radio span::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 2px solid #B8C1CC;
  border-radius: 50%;
  transition: 0.3s;
  content: '';
}

.radio span::after {
  position: absolute;
  opacity: 0;
  left: 4px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: scale(0) translateY(-50%);
  background-color: #1C7AA7;
  transition: all 0.3s ease;
  content: '';
}

.checkbox {
  position: relative;
  display: block;
  cursor: pointer;
}

.checkbox label {
  cursor: pointer;
}

.checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
  font-size: 0;
  cursor: pointer;
}

.checkbox input:checked ~ span::after {
  opacity: 1;
}

.checkbox input:checked ~ span::before {
  border-color: #1C7AA7;
}

.checkbox span {
  display: inline-block;
  padding-left: 37px;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #6D7885;
  cursor: pointer;
}

.checkbox span a {
  color: #1C7AA7;
  position: relative;
  z-index: 3;
  transition: .2s linear;
  border-bottom: 1px solid #1C7AA7;
}

.checkbox span a:hover {
  color: #cd3089;
  border-bottom-color: #cd3089;
}

.checkbox span::before {
  position: absolute;
  left: 0;
  top: 5px;
  width: 22px;
  height: 22px;
  border: 1px solid #B8C1CC;
  border-radius: 6px;
  transition: 0.3s;
  content: '';
}

.checkbox span::after {
  position: absolute;
  left: 6px;
  top: 11px;
  opacity: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-image: url("../img/check-blue.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s ease;
  content: '';
}

@font-face {
  font-family: 'SF Pro Display';
  src: url("../fonts/SFProDisplay-Medium.eot");
  src: local("SF Pro Display Medium"), local("SFProDisplay-Medium"), url("../fonts/SFProDisplay-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/SFProDisplay-Medium.woff2") format("woff2"), url("../fonts/SFProDisplay-Medium.woff") format("woff"), url("../fonts/SFProDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url("../fonts/SFProDisplay-Heavy.eot");
  src: local("SF Pro Display Heavy"), local("SFProDisplay-Heavy"), url("../fonts/SFProDisplay-Heavy.eot?#iefix") format("embedded-opentype"), url("../fonts/SFProDisplay-Heavy.woff2") format("woff2"), url("../fonts/SFProDisplay-Heavy.woff") format("woff"), url("../fonts/SFProDisplay-Heavy.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url("../fonts/SFProDisplay-UltralightItalic.eot");
  src: local("SF Pro Display UltralightItalic"), local("SFProDisplay-UltralightItalic"), url("../fonts/SFProDisplay-UltralightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/SFProDisplay-UltralightItalic.woff2") format("woff2"), url("../fonts/SFProDisplay-UltralightItalic.woff") format("woff"), url("../fonts/SFProDisplay-UltralightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url("../fonts/SFProDisplay-RegularItalic.eot");
  src: local("SF Pro Display Regular Italic"), local("SFProDisplay-RegularItalic"), url("../fonts/SFProDisplay-RegularItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/SFProDisplay-RegularItalic.woff2") format("woff2"), url("../fonts/SFProDisplay-RegularItalic.woff") format("woff"), url("../fonts/SFProDisplay-RegularItalic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url("../fonts/SFProDisplay-Thin.eot");
  src: local("SF Pro Display Thin"), local("SFProDisplay-Thin"), url("../fonts/SFProDisplay-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/SFProDisplay-Thin.woff2") format("woff2"), url("../fonts/SFProDisplay-Thin.woff") format("woff"), url("../fonts/SFProDisplay-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url("../fonts/SFProDisplay-Light.eot");
  src: local("SF Pro Display Light"), local("SFProDisplay-Light"), url("../fonts/SFProDisplay-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/SFProDisplay-Light.woff2") format("woff2"), url("../fonts/SFProDisplay-Light.woff") format("woff"), url("../fonts/SFProDisplay-Light.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url("../fonts/SFProDisplay-BlackItalic.eot");
  src: local("SF Pro Display Black Italic"), local("SFProDisplay-BlackItalic"), url("../fonts/SFProDisplay-BlackItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/SFProDisplay-BlackItalic.woff2") format("woff2"), url("../fonts/SFProDisplay-BlackItalic.woff") format("woff"), url("../fonts/SFProDisplay-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url("../fonts/SFProDisplay-Bold.eot");
  src: local("SF Pro Display Bold"), local("SFProDisplay-Bold"), url("../fonts/SFProDisplay-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/SFProDisplay-Bold.woff2") format("woff2"), url("../fonts/SFProDisplay-Bold.woff") format("woff"), url("../fonts/SFProDisplay-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url("../fonts/SFProDisplay-Black.eot");
  src: local("SF Pro Display Black"), local("SFProDisplay-Black"), url("../fonts/SFProDisplay-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/SFProDisplay-Black.woff2") format("woff2"), url("../fonts/SFProDisplay-Black.woff") format("woff"), url("../fonts/SFProDisplay-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url("../fonts/SFProDisplay-SemiboldItalic.eot");
  src: local("SF Pro Display SemiboldItalic"), local("SFProDisplay-SemiboldItalic"), url("../fonts/SFProDisplay-SemiboldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/SFProDisplay-SemiboldItalic.woff2") format("woff2"), url("../fonts/SFProDisplay-SemiboldItalic.woff") format("woff"), url("../fonts/SFProDisplay-SemiboldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url("../fonts/SFProDisplay-Ultralight.eot");
  src: local("SF Pro Display Ultralight"), local("SFProDisplay-Ultralight"), url("../fonts/SFProDisplay-Ultralight.eot?#iefix") format("embedded-opentype"), url("../fonts/SFProDisplay-Ultralight.woff2") format("woff2"), url("../fonts/SFProDisplay-Ultralight.woff") format("woff"), url("../fonts/SFProDisplay-Ultralight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url("../fonts/SFProDisplay-LightItalic.eot");
  src: local("SF Pro Display LightItalic"), local("SFProDisplay-LightItalic"), url("../fonts/SFProDisplay-LightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/SFProDisplay-LightItalic.woff2") format("woff2"), url("../fonts/SFProDisplay-LightItalic.woff") format("woff"), url("../fonts/SFProDisplay-LightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url("../fonts/SFProDisplay-ThinItalic.eot");
  src: local("SF Pro Display ThinItalic"), local("SFProDisplay-ThinItalic"), url("../fonts/SFProDisplay-ThinItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/SFProDisplay-ThinItalic.woff2") format("woff2"), url("../fonts/SFProDisplay-ThinItalic.woff") format("woff"), url("../fonts/SFProDisplay-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url("../fonts/SFProDisplay-MediumItalic.eot");
  src: local("SF Pro Display MediumItalic"), local("SFProDisplay-MediumItalic"), url("../fonts/SFProDisplay-MediumItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/SFProDisplay-MediumItalic.woff2") format("woff2"), url("../fonts/SFProDisplay-MediumItalic.woff") format("woff"), url("../fonts/SFProDisplay-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url("../fonts/SFProDisplay-Semibold.eot");
  src: local("SF Pro Display Semibold"), local("SFProDisplay-Semibold"), url("../fonts/SFProDisplay-Semibold.eot?#iefix") format("embedded-opentype"), url("../fonts/SFProDisplay-Semibold.woff2") format("woff2"), url("../fonts/SFProDisplay-Semibold.woff") format("woff"), url("../fonts/SFProDisplay-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url("../fonts/SFProDisplay-HeavyItalic.eot");
  src: local("SF Pro Display HeavyItalic"), local("SFProDisplay-HeavyItalic"), url("../fonts/SFProDisplay-HeavyItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/SFProDisplay-HeavyItalic.woff2") format("woff2"), url("../fonts/SFProDisplay-HeavyItalic.woff") format("woff"), url("../fonts/SFProDisplay-HeavyItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url("../fonts/SFProDisplay-Regular.eot");
  src: local("SF Pro Display Regular"), local("SFProDisplay-Regular"), url("../fonts/SFProDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/SFProDisplay-Regular.woff2") format("woff2"), url("../fonts/SFProDisplay-Regular.woff") format("woff"), url("../fonts/SFProDisplay-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url("../fonts/SFProDisplay-BoldItalic.eot");
  src: local("SF Pro Display BoldItalic"), local("SFProDisplay-BoldItalic"), url("../fonts/SFProDisplay-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/SFProDisplay-BoldItalic.woff2") format("woff2"), url("../fonts/SFProDisplay-BoldItalic.woff") format("woff"), url("../fonts/SFProDisplay-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}

@-webkit-keyframes scale {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

@keyframes scale {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

.text p + p {
  margin-top: 15px;
}

.text a {
  text-decoration: underline;
}

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

.input::placeholder {
  transition: opacity 0.3s ease;
}

.input:focus::-moz-placeholder {
  opacity: 0;
}

.input:focus::placeholder {
  opacity: 0;
}

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

.textarea::placeholder {
  transition: opacity 0.3s ease;
}

.textarea:focus::-moz-placeholder {
  opacity: 0;
}

.textarea:focus::placeholder {
  opacity: 0;
}

.btn {
  display: inline-block;
  padding: 10px 15px;
  transition: 0.3s;
}

.btn:disabled {
  pointer-events: none;
  background: rgba(255, 255, 255, 0.4);
  color: var(--color-main);
}

.btn--blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  padding: 10px 24px;
  background-color: var(--color-base);
  border-radius: 12px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-main);
  border: none;
  transition: 0.3s;
}

.btn--blue:hover {
  color: var(--color-main);
  background-color: #0066e3;
}

.btn--transparent {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  padding: 10px 24px;
  background-color: transparent;
  border-radius: 12px;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-dark4);
  border: none;
  transition: 0.3s;
}

.btn--transparent:hover {
  color: var(--color-red);
  background-color: transparent;
}

.btn--muted {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  padding: 10px 24px;
  background-color: var(--color-muted);
  border-radius: 12px;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-base);
  border: none;
  transition: 0.3s;
}

.btn--muted:hover {
  color: var(--color-main);
  background-color: #0066e3;
}

.btn--muted:hover .icon svg {
  fill: var(--color-main);
}

.btn--muted .icon {
  margin-right: 4px;
  width: 16px;
  height: 16px;
}

.btn--muted .icon svg {
  fill: var(--color-base);
}

.btn--done {
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--color-additional2);
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}

.btn--done .icon {
  margin-right: 4px;
  width: 20px;
  height: 20px;
}

.btn--done .icon svg {
  fill: var(--color-additional2);
}

.btn--big {
  font-size: 16px;
  line-height: 150%;
  padding: 16px 24px;
}

.btn--next {
  padding: 16px 32px;
}

.btn--border {
  border: 1px solid blue;
  box-sizing: border-box;
  border-radius: 12px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  transition: 0.3s linear;
}

.btn--border svg {
  transition: 0.3s linear;
}

.btn--border:hover {
  color: #fff;
}

.btn--border:hover svg {
  fill: #fff;
}

.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 100;
  transition: all 0.5s ease-in-out;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal.active .modal__content {
  opacity: 1;
  transform: translate(0, 0);
}

.modal__area {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.modal__body {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px 20px;
}

.modal__content {
  width: 100%;
  max-width: 929px;
  background: var(--color-main);
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: translate(0px, -100%);
  padding: 20px 15px;
  border-radius: 32px;
  position: relative;
}

.modal__content--image {
  position: relative;
  overflow: hidden;
  padding: 56px 30px 56px 181px;
}

.modal__content--image::before {
  left: 0px;
  top: 0;
  bottom: 0;
  content: '';
  display: block;
  height: 100%;
  width: 181px;
  background: url(../img/modal-image.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  position: absolute;
}

.modal__close {
  cursor: pointer;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
  z-index: 101;
}

.modal__close svg {
  fill: var(--color-dark4);
}

.modal__close:hover svg {
  fill: var(--color-dark);
}

.modal__arrows {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 101;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1041px;
  width: 100%;
}

.modal__arrow {
  cursor: pointer;
  width: 32px;
  height: 32px;
  border: 2px solid var(--color-main);
  border-radius: 50%;
  transition: 0.3s;
}

.modal__arrow svg {
  fill: var(--color-main);
}

.modal__arrow:hover {
  border-color: var(--color-base);
}

.modal__arrow:hover svg {
  fill: var(--color-base);
}

.select {
  display: inline-flex;
  align-items: center;
  z-index: 15;
}

.select.select-selected-items.addtour-section__select {
  flex-direction: column;
  align-items: flex-start;
}

.select.select-placeholder .select__trigger {
  padding-top: 18px;
  padding-bottom: 8px;
}

.select.select-placeholder .select__trigger > .icon {
  position: relative;
  top: -5px;
}

.select .select-placeholder__trigger-placeholder {
  position: absolute;
  top: 8px;
  left: 16px;
  font-weight: 600;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-dark4);
  display: flex;
  align-items: center;
}

.select .select-placeholder__trigger-placeholder-icon {
  width: 12px;
  height: 12px;
  fill: var(--color-dark4);
  margin-right: 4px;
}

.select.hidden {
  pointer-events: none;
  mix-blend-mode: normal;
  opacity: 0.36;
}

.select__title {
  font-weight: normal;
  font-size: 12px;
  line-height: 133%;
  display: block;
  margin-right: 8px;
  color: var(--color-dark4);
}

.select__wrapper {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 100%;
}

.select__wrapper a {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.select__wrapper a .icon {
  margin-right: 5px;
}

.select__content {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  color: var(--color-dark2);
}

.select__content.open .select__trigger > .icon svg {
  transform: rotate(-90deg);
}

.select__content.open .select__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.select__trigger {
  cursor: pointer;
  min-height: 48px;
  background: #F2F3F5;
  border: 0.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.select__trigger:hover a,
.select__trigger:hover b,
.select__trigger:hover span {
  color: var(--green);
}

.select__trigger input {
  width: 100%;
  background-color: inherit;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.select__trigger b {
  font-weight: 400;
}

.select__trigger span {
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  color: #696969;
  transition: .3s linear;
}

.select__trigger span:hover {
  color: var(--green);
}

.select__trigger > a,
.select__trigger span {
  display: flex;
  align-items: center;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  padding-left: 12px;
  color: #818C99;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}

.select__trigger > a:hover,
.select__trigger span:hover {
  color: var(--green);
}

.select__trigger .icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s linear;
  min-height: 44px;
  margin-right: 20px;
}

.select__trigger .icon svg {
  width: 16px;
  fill: #818C99;
  height: 16px;
  transform: rotate(90deg);
}

.select__dropdown {
  position: absolute;
  display: block;
  top: calc(100% - 10px);
  left: 0;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: #F2F3F5;
  border: 0.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 0 0 10px 10px;
  border-top: 0;
  width: 100%;
  padding-top: 5px;
}

.select__options {
  max-height: 222px;
  padding-right: 30px;
  padding-bottom: 17px;
}

.select__options .simplebar-vertical {
  width: 5px;
  background: rgba(129, 140, 153, 0.5);
  border-radius: 8px;
  right: 24px;
  top: 16px;
  bottom: 17px;
}

.select__options .simplebar-vertical .simplebar-scrollbar {
  background: #818C99;
  border-radius: 8px;
}

.select__options .simplebar-vertical .simplebar-scrollbar:before {
  display: none;
}

.select__options .select__option:last-child {
  border-bottom: 0;
}

.select__option {
  position: relative;
  display: block;
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #818C99;
  padding-left: 12px;
  margin-bottom: 10px;
}

.select__option:last-child {
  margin-bottom: 0;
}

.select__option b {
  font-weight: 400;
}

.select__option span {
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  color: #696969;
  padding-left: 18px;
  transition: .3s linear;
}

.select__option span:hover {
  color: var(--green);
}

.select__option:hover {
  color: var(--green);
}

.select__option:hover b,
.select__option:hover span {
  color: var(--green);
}

.select__option.selected:before {
  opacity: 1;
}

.select__checkboxs {
  overflow-y: auto;
}

.select__checkbox {
  position: relative;
  display: block;
  padding: 10px 16px;
  transition: 0.3s;
  transition: 0.3s;
}

.select__checkbox.checked {
  background-color: var(--color-muted);
}

.select__checkbox:last-child {
  margin: 0;
}

.select__checkbox.checkbox span::before {
  left: 16px;
}

.select__checkbox.checkbox span::after {
  left: 16px;
}

.select__checkbox:hover {
  background-color: var(--color-muted);
  color: var(--color-base);
}

.select__checkbox:hover.checkbox span::before {
  border-color: var(--color-base);
}

.select__checkbox.selected {
  background-color: var(--color-base);
  color: var(--color-main);
}

.select__on-map {
  display: block;
  text-decoration: none;
  cursor: pointer;
  margin-top: 6px;
  padding: 6px 12px 7px 12px;
  font-size: 14px;
  line-height: 143%;
  color: var(--color-main);
  background-color: var(--color-base);
  transition: 0.3s;
}

.select__on-map:hover {
  color: var(--color-base);
  background-color: var(--color-muted);
}

.bg-overley {
  position: fixed;
  background: #000;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  visibility: hidden;
  transition: .3s linear;
}

.bg-overley.js-active {
  opacity: .5;
  visibility: visible;
}

.modal-thanks-registry {
  position: fixed;
  z-index: 101;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 350px;
  background: #fff;
  padding: 40px 50px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: .3s linear;
  opacity: 0;
  visibility: hidden;
}

.modal-thanks-registry.js-active {
  opacity: 1;
  visibility: visible;
}

.modal-thanks-registry__text {
  font-size: 18px;
  line-height: 130%;
  text-align: center;
}

.modal-thanks-registry .login-global-page__form--btn {
  max-width: 100%;
  width: 100%;
  margin-top: 15px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  border-bottom: 1px solid #ECECEC;
}

.header img {
  width: 162px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.login-global-page__wrapper {
  margin: 0 auto;
  max-width: 426px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 108px;
}

.login-global-page__logo-key {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 334px;
  height: 97px;
}

.login-global-page__logo-key img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.login-global-page__subtitle {
  max-width: 331px;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #818C99;
  padding-top: 35px;
}

.login-global-page__title {
  padding-top: 10px;
  max-width: 380px;
  text-align: center;
  font-weight: 500;
  font-size: 30px;
  line-height: 40px;
  color: #111111;
}

.login-global-page__form {
  width: 100%;
  max-width: 327px;
  padding-top: 26px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
}

.login-global-page__form--title {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #818C99;
  padding-bottom: 13px;
}

.login-global-page__form--row {
  display: flex;
  align-items: center;
}

.login-global-page__form--row .input-grey.text input {
  color: #535556;
}

.login-global-page__form--row .input-grey.text {
  max-width: 66px;
  margin-right: 15px;
}

.login-global-page__form--row .input-grey.text input {
  padding: 0 10px;
  text-align: center;
}

.login-global-page__form--btn {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  background: #CD3089;
  border-radius: 16px;
  min-height: 56px;
  transition: .2s linear;
  margin-top: 30px;
}

.login-global-page__form--btn:hover {
  background: #8c3088;
}

.login-global-page__card {
  width: 100%;
  max-width: 426px;
  position: relative;
}

.login-global-page__card--text {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  bottom: -38px;
  right: -2px;
}

.login-global-page__card--text img {
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
}

.login-global-page__card--text span {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  color: #92609F;
  padding-top: 5px;
}

.login-global-page__card img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(6px 6px 25px rgba(139, 139, 139, 0.25));
  border-radius: 15px;
}

.form-verify-phone {
  width: 100%;
  max-width: 327px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 27px;
}

.form-verify-phone__title {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #818C99;
  letter-spacing: 1.3px;
}

.form-verify-phone__phone {
  color: #111111;
  font-weight: 400;
  font-size: 21px;
  line-height: 20px;
  padding-top: 17px;
}

.form-verify-phone__btn {
  width: 100%;
}

.form-verify-phone__btn-border {
  background: transparent;
  border: 1px solid #CD3089;
  color: #CD3089;
  width: 100%;
}

.form-verify-phone__btn-border:hover {
  background: transparent;
  border-color: #8c3088;
  color: #8c3088;
}

.sms-control-login {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 34px;
}

.sms-control-login__title {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #818C99;
  max-width: 292px;
}

.sms-control-login__form {
  padding-top: 20px;
  padding-bottom: 35px;
}

.sms-control-login__form .input-grey {
  width: 46px;
  height: 46px;
  margin: 0 4px;
}

.sms-control-login__form .input-grey input {
  min-height: 46px;
  font-weight: 600;
  font-size: 35px;
  line-height: 44px;
  text-align: center;
  padding: 0;
  color: #1C7AA7;
}

.sms-control-login__form.error {
  padding-bottom: 10px;
}

.sms-control-login__form.error .sms-control-login__form--error {
  display: block;
}

.sms-control-login__form--row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sms-control-login__form--error {
  padding-top: 12px;
  display: none;
  text-align: center;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: #DB1F5D;
}

.sms-control-login__subtitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #818C99;
}

.sms-control-login__time {
  padding-top: 20px;
  font-weight: 400;
  font-size: 25px;
  line-height: 20px;
  text-align: center;
  color: #818C99;
}

.sms-control-login__send-sms {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sms-control-login__send-sms a {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  transition: .2s linear;
  border-bottom: 1px solid #92609F;
  color: #92609F;
}

.sms-control-login__send-sms a:hover {
  color: #1C7AA7;
  border-bottom-color: #1C7AA7;
}

.sms-control-login__send-sms span {
  padding-top: 17px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #818C99;
  padding-bottom: 13px;
}

.add-number-page__form {
  padding-bottom: 34px;
}

.add-number-page__sms-form {
  padding-top: 0;
}

.register-page-global__form {
  padding-top: 28px;
  max-width: 327px;
  width: 100%;
}

.register-page-global__form .input-grey {
  width: 100%;
  margin-bottom: 24px;
}

.register-page-global__form .input-grey.email {
  margin-bottom: 12px;
}

.register-page-global__form--row {
  margin-bottom: 27px;
}

.register-page-global__form--row-wrapper {
  display: flex;
  align-items: center;
  margin: 0 -10px;
}

.register-page-global__form--row-wrapper .select {
  margin: 0 10px;
  width: calc((100%/3) - 20px);
}

.register-page-global__form--sex {
  display: flex;
  align-items: center;
}

.register-page-global__form--sex .radio {
  margin-right: 40px;
}

.register-page-global__form .login-global-page__form--btn {
  width: 100%;
}

.register-page-global__error-text {
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #DB1F5D;
  padding-top: 25px;
}

.lk-page__wrapper {
  max-width: 484px;
}

.lk-page__img {
  width: 233px;
  height: 151px;
  margin-top: 23px;
}

.lk-page__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.lk-page__title {
  font-weight: 500;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
  color: #111111;
  padding: 27px 0;
  max-width: 416px;
}

.lk-page__content {
  width: 100%;
  max-width: 374px;
  display: flex;
  align-items: stretch;
  padding-bottom: 34px;
}

.lk-page__col {
  width: 100%;
}

.lk-page__col.small {
  min-width: 140px;
  margin-left: 61px;
}

.lk-page__col--item {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #111111;
  display: flex;
  flex-direction: column;
  margin-bottom: 21px;
}

.lk-page__col--item:last-child {
  margin-bottom: 0;
}

.lk-page__col--item span {
  color: #818C99;
}

.lk-page__btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 56px;
  background: #CD3089;
  border-radius: 16px;
  transition: .2s linear;
  fill: #ffff;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #FFFFFF;
  width: 100%;
  max-width: 327px;
  margin-bottom: 20px;
}

.lk-page__btn svg {
  width: 27px;
  height: 27px;
  transition: .2s linear;
  margin-right: 14px;
  margin-left: 50px;
}

.lk-page__btn:hover {
  background: #8c3088;
}

.lk-page__btn2 {
  background: #92609F;
}

.lk-page__info-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  box-shadow: 4px 4px 25px rgba(213, 213, 213, 0.25);
  border-radius: 10px;
  max-width: 484px;
  padding: 20px 0;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  width: 100%;
  color: #1C7AA7;
  margin-top: 17px;
}

.lk-page__info-block b {
  font-weight: 400;
  text-transform: uppercase;
}

.lk-page__info-block a {
  font-weight: 700;
}

.lk-global-page {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.lk-global-page__header {
  display: none;
}

.lk-global-page__sidebar {
  background: #F9F9F9;
}

.lk-global-page__content {
  width: 100%;
  padding: 42px 60px;
}

.lk-global-page__content.inform {
  padding: 0 !important;
}

.lk-sidebar {
  position: relative;
}

.lk-sidebar__header--close {
  display: none;
}

.lk-sidebar__wrapper {
  padding: 19px 30px;
  height: 100vh;
  min-width: 420px;
  max-width: 420px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: sticky;
  top: 0;
}

.lk-sidebar__logo {
  width: 252px;
  display: block;
}

.lk-sidebar__logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.lk-sidebar__user {
  margin-top: 37px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}

.lk-sidebar__user--img {
  width: 72px;
  height: 72px;
}

.lk-sidebar__user--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.lk-sidebar__user--title {
  margin-left: 19px;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #111111;
}

.lk-sidebar__exit {
  background: #F1F1F1;
  padding: 17px 28px;
  display: flex;
  align-items: center;
  position: relative;
  left: -30px;
  width: calc(100% + 60px);
}

.lk-sidebar__exit svg {
  width: 22px;
  height: 22px;
  margin-right: 15px;
  transition: .3s linear;
}

.lk-sidebar__exit span {
  transition: .3s linear;
  font-weight: 400;
  font-size: 15px;
  line-height: 40px;
  color: #111111;
}

.lk-sidebar__exit:hover svg {
  fill: #1C7AA7;
}

.lk-sidebar__exit:hover span {
  color: #1C7AA7;
}

.lk-sidebar__bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lk-sidebar__bottom .login-global-page__form--btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lk-sidebar__bottom .login-global-page__form--btn svg {
  width: 26px;
  height: 26px;
  margin-right: 10px;
  fill: #fff;
  transition: .3s linear;
}

.lk-sidebar__bottom--text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 23px;
  margin-bottom: 87px;
  padding: 28px 17px;
  text-align: center;
  font-weight: 400;
  font-size: 13px;
  line-height: 24px;
  color: #111111;
  border: 1px solid #D7D8D9;
  box-shadow: 4px 4px 25px rgba(213, 213, 213, 0.25);
  border-radius: 10px;
}

.lk-sidebar__bottom--text span {
  display: block;
  text-transform: uppercase;
}

.lk-sidebar__bottom--text span a {
  display: block;
  font-weight: 700;
  font-size: 15px;
  line-height: 30px;
  color: #1C7AA7;
}

.lk-sidebar-menu li {
  list-style: none;
  margin-bottom: 10px;
}

.lk-sidebar-menu li:last-child {
  margin-bottom: 0;
}

.lk-sidebar-menu__item--wrapper {
  display: flex;
  align-items: center;
  min-height: 54px;
}

.lk-sidebar-menu__item--wrapper.js-active .lk-sidebar-menu__item--icon svg {
  fill: #1C7AA7;
}

.lk-sidebar-menu__item--wrapper.js-active .lk-sidebar-menu__item--title {
  color: #1C7AA7;
}

.lk-sidebar-menu__item--wrapper.js-active .lk-sidebar-menu__item--arrow {
  transform: rotate(90deg);
}

.lk-sidebar-menu__item--wrapper.js-active .lk-sidebar-menu__item--arrow svg {
  fill: #1C7AA7;
}

.lk-sidebar-menu__item:hover .lk-sidebar-menu__item--icon svg {
  fill: #1C7AA7;
}

.lk-sidebar-menu__item:hover .lk-sidebar-menu__item--title {
  color: #1C7AA7;
}

.lk-sidebar-menu__item--icon {
  width: 25px;
  min-width: 25px;
  height: 25px;
}

.lk-sidebar-menu__item--icon svg {
  width: 100%;
  height: 100%;
  fill: #111111;
  transition: .3s linear;
}

.lk-sidebar-menu__item--title {
  font-weight: 500;
  font-size: 18px;
  line-height: 40px;
  margin-left: 16px;
  width: 100%;
  transition: .3s linear;
}

.lk-sidebar-menu__item--arrow {
  transition: .3s linear;
  width: 17px;
  height: 17px;
}

.lk-sidebar-menu__item--arrow svg {
  width: 100%;
  height: 100%;
  fill: #111111;
}

.lk-sidebar-dropdown {
  display: none;
  position: relative;
  left: -30px;
  width: calc(100% + 60px);
}

.lk-sidebar-dropdown__wrapper {
  display: flex;
  flex-direction: column;
}

.lk-sidebar-dropdown__item {
  min-height: 52px;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 70px;
  padding-right: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 40px;
  color: #111111;
  transition: .3s linear;
}

.lk-sidebar-dropdown__item:hover {
  color: #1C7AA7;
}

.lk-sidebar-dropdown__item:before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  width: 26px;
  height: 26px;
  background: url("../img/logo-menu.png");
  background-size: contain;
  background-position: center;
  transition: .3s linear;
  opacity: 0;
  visibility: hidden;
}

.lk-sidebar-dropdown__item.js-active {
  background: #94A2AA;
  color: #fff;
}

.lk-sidebar-dropdown__item.js-active:nth-child(3) {
  background: #ED1A36;
}

.lk-sidebar-dropdown__item.js-active:nth-child(4) {
  background: #B41E8D;
}

.lk-sidebar-dropdown__item.js-active:nth-child(5) {
  background: #0161B0;
}

.lk-sidebar-dropdown__item.js-active:before {
  opacity: 1;
  visibility: visible;
}

.lk-personal-data-block {
  width: 100%;
}

.lk-personal-data-block__title {
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
  color: #111111;
}

.lk-personal-data-block__content {
  width: 100%;
  margin-top: 21px;
  padding-top: 28px;
  padding-bottom: 34px;
  border-top: 1px solid #D7D8D9;
  border-bottom: 1px solid #D7D8D9;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.lk-personal-card-row {
  display: flex;
  align-items: stretch;
}

.lk-personal-card-row__col:first-child {
  margin-right: 100px;
}

.lk-personal-card__title {
  display: flex;
  align-items: center;
}

.lk-personal-card__title svg {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  fill: #1C7AA7;
}

.lk-personal-card__title span {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #818C99;
}

.lk-personal-card__number {
  margin-top: 11px;
  font-weight: 400;
  font-size: 23px;
  line-height: 24px;
  color: #1C7AA7;
}

.lk-personal-verify {
  display: flex;
  align-items: center;
}

.lk-personal-verify svg {
  width: 24px;
  height: 24px;
  fill: #5CB327;
}

.lk-personal-verify span {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  margin-left: 15px;
  color: #5CB327;
}

.lk-personal-card-info {
  padding-top: 30px;
  border-top: 1px solid #D7D8D9;
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 54px;
  grid-row-gap: 26px;
}

.lk-personal-card-info__item {
  display: flex;
  align-items: flex-start;
}

.lk-personal-card-info__item--icon {
  width: 28px;
  height: 28px;
  margin-right: 16px;
}

.lk-personal-card-info__item--icon svg {
  width: 100%;
  height: 100%;
  fill: #1C7AA7;
}

.lk-personal-card-info__item--text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.lk-personal-card-info__item--text span {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #818C99;
}

.lk-personal-card-info__item--text b {
  margin-top: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #111111;
}

.lk-personal-card-info__item.name {
  grid-area: 1 / 1 / 2 / 2;
}

.lk-personal-card-info__item.phone {
  grid-area: 2 / 1 / 3 / 2;
}

.lk-personal-card-info__item.date {
  grid-area: 2 / 2 / 3 / 3;
}

.lk-personal-card-info__item.email {
  grid-area: 3 / 1 / 4 / 2;
}

.lk-personal-card-info__item.sex {
  grid-area: 3 / 2 / 4 / 3;
}

.lk-personal-your-doctor {
  margin-top: 30px;
}

.lk-personal-your-doctor__row {
  display: flex;
  margin-top: 30px;
}

.lk-personal-your-doctor__row .lk-personal-card-info__item {
  margin-right: 55px;
}

.lk-global-pharmacies__header {
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #D7D8D9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lk-global-pharmacies__title {
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
  color: #111111;
}

.lk-global-pharmacies__btns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 25px;
}

.lk-global-pharmacies__btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 12px;
}

.lk-global-pharmacies__btn.js-active .icon {
  background: #1C7AA7;
}

.lk-global-pharmacies__btn.js-active span {
  color: #1C7AA7;
}

.lk-global-pharmacies__btn:hover span {
  color: #1C7AA7;
}

.lk-global-pharmacies__btn .icon {
  width: 44px;
  height: 32px;
  background: rgba(40, 43, 46, 0.2);
  -webkit-backdrop-filter: blur(16.3097px);
          backdrop-filter: blur(16.3097px);
  border-radius: 10px;
  transition: .3s linear;
}

.lk-global-pharmacies__btn .icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.lk-global-pharmacies__btn span {
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  margin-left: 10px;
  letter-spacing: -0.32px;
  color: #ACACAC;
}

.lk-global-pharmacies__search-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 27px;
}

.lk-global-pharmacies__search-wrapper--text {
  margin-left: 30px;
  font-size: 13px;
  line-height: 16px;
  color: #DB1F5D;
}

.lk-global-pharmacies__search-wrapper--text.succeful {
  color: #111111;
}

.lk-global-pharmacies__search-wrapper--text.succeful b {
  color: #6495C8;
}

.lk-global-pharmacies__search-wrapper--text b {
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.32px;
  color: #111111;
}

.lk-global-pharmacies__search {
  display: flex;
  align-items: center;
  background: #F2F3F5;
  border: 0.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  min-height: 40px;
  padding: 0 14px;
  width: 100%;
  max-width: 615px;
}

.lk-global-pharmacies__search.error {
  border-color: #DB1F5D;
}

.lk-global-pharmacies__search.error svg {
  fill: #DB1F5D;
}

.lk-global-pharmacies__search.error input {
  color: #DB1F5D;
}

.lk-global-pharmacies__search.error input::-moz-placeholder {
  color: #DB1F5D;
}

.lk-global-pharmacies__search.error input::placeholder {
  color: #DB1F5D;
}

.lk-global-pharmacies__search.succeful {
  border-color: #6495C8;
}

.lk-global-pharmacies__search.succeful svg {
  fill: #6495C8;
}

.lk-global-pharmacies__search.succeful input {
  color: #6495C8;
}

.lk-global-pharmacies__search.succeful input::-moz-placeholder {
  color: #6495C8;
}

.lk-global-pharmacies__search.succeful input::placeholder {
  color: #6495C8;
}

.lk-global-pharmacies__search svg {
  width: 20px;
  height: 20px;
  fill: #818C99;
}

.lk-global-pharmacies__search input {
  margin-left: 14px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.32px;
  color: #818C99;
  background: transparent;
}

.lk-global-pharmacies__list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 -45px;
  max-width: 910px;
  position: relative;
}

.lk-global-pharmacies__list:before {
  content: '';
  background: #ECECEC;
  position: absolute;
  top: 0;
  width: 1px;
  height: calc(100% - 27px);
  left: 50%;
  transform: translateX(-50%);
}

.lk-global-pharmacies__list.map {
  height: 300px;
  margin: 0;
}

.lk-global-pharmacies__list.map:before {
  display: none;
}

.lk-global-pharmacies__list.map .simplebar-content {
  max-width: 905px;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 -45px;
  margin-right: 55px;
  position: relative;
}

.lk-global-pharmacies__list.map .simplebar-content:before {
  content: '';
  background: #ECECEC;
  position: absolute;
  top: 0;
  width: 1px;
  height: calc(100% - 27px);
  left: 50%;
  transform: translateX(-50%);
}

.lk-global-pharmacies__list.map .simplebar-track.simplebar-vertical {
  width: 8px;
  background: #F2F3F5;
  border: 0.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  right: 10px;
}

.lk-global-pharmacies__list.map .simplebar-track.simplebar-vertical .simplebar-scrollbar {
  background: #DDDDDD;
  border: 0.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
}

.lk-global-pharmacies__list.map .simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  display: none;
}

.lk-global-pharmacies__item {
  margin: 0 45px;
  margin-bottom: 27px;
  width: calc(50% - 90px);
  padding-bottom: 15px;
  border-bottom: 8px solid #F2F3F5;
}

.lk-global-pharmacies__pagination {
  max-width: 820px;
}

.lk-global-pharmacies__pagination.map {
  margin-top: 45px;
  margin-bottom: 40px;
}

.lk-global-pharmacies__map {
  height: 600px;
  width: 100%;
}

.lk-global-pharmacies__map--wrapper {
  max-width: 900px;
  position: relative;
}

.lk-global-pharmacies__map--wrapper .pharmacies-item {
  position: absolute;
  bottom: 20px;
  left: 20px;
  margin: 0;
  filter: drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.08));
  background: #FFFFFF;
  border-radius: 10px;
  border: 2px solid #92609F;
  width: 100%;
  min-width: 385px;
  max-width: 385px;
  padding: 12px;
}

.lk-global-pharmacies__map--wrapper .pharmacies-item:hover {
  border-bottom-color: #92709f;
}

.lk-global-pharmacies__map--wrapper .pharmacies-item__title {
  color: #92609F;
}

.lk-global-pharmacies__map--wrapper .pharmacies-item__btn:hover span {
  color: #1C7AA7;
}

.lk-global-pharmacies__map--wrapper .pharmacies-item__btn:hover svg {
  fill: #1C7AA7;
}

.lk-global-pharmacies__map .gmnoprint {
  display: none;
}

.lk-global-pharmacies__map--geo {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  width: 44px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #1C7AA7;
  -webkit-backdrop-filter: blur(16.30969px);
          backdrop-filter: blur(16.30969px);
}

.lk-global-pharmacies__map--geo svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.gm-style .gm-style-iw-c {
  padding: 0;
  background: transparent;
  transform: translate3d(-10%, -100%, 0);
  box-shadow: none !important;
  border-radius: 0;
  max-width: inherit !important;
}

.gm-style .gm-style-iw-c button.gm-ui-hover-effect {
  display: none !important;
}

.gm-style .gm-style-iw-c .gm-style-iw-d {
  padding: 0;
  overflow: inherit !important;
}

.gm-style .gm-style-iw-c .gm-style-iw-d .pharmacies-item {
  filter: drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.08));
  background: #FFFFFF;
  position: static;
  border-radius: 10px;
  border: 2px solid #1C7AA7;
  margin: 0;
  width: 100%;
  min-width: 385px;
  max-width: 385px;
  padding: 12px;
}

.gm-style .gm-style-iw-c .gm-style-iw-d .pharmacies-item:hover {
  border-bottom-color: #1C7AA7;
}

.gm-style .gm-style-iw-c .gm-style-iw-d .pharmacies-item__title {
  color: #6495C8;
}

.gm-style .gm-style-iw-c .gm-style-iw-d .pharmacies-item__btn:hover span {
  color: #1C7AA7;
}

.gm-style .gm-style-iw-c .gm-style-iw-d .pharmacies-item__btn:hover svg {
  fill: #1C7AA7;
}

.gm-style .gm-style-iw-c .gm-style-iw-d .map-window-geo {
  filter: drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.08));
  background: #FFFFFF;
  position: static;
  border-radius: 10px;
  border: 2px solid #F57011;
  padding: 10px 20px;
  font-weight: bold;
}

.gm-style .gm-style-iw-c + .gm-style-iw-tc {
  display: none;
}

.pharmacies-item {
  transition: .3s linear;
}

.pharmacies-item:hover {
  border-bottom-color: #1C7AA7;
}

.pharmacies-item:hover .pharmacies-item__title {
  color: #1C7AA7;
}

.pharmacies-item:hover .pharmacies-item__btn span {
  color: #1C7AA7;
}

.pharmacies-item:hover .pharmacies-item__btn svg {
  fill: #1C7AA7;
}

.pharmacies-item.js-active {
  border-bottom-color: #1C7AA7;
}

.pharmacies-item.js-active .pharmacies-item__title {
  color: #1C7AA7;
}

.pharmacies-item.js-active .pharmacies-item__btn span {
  color: #1C7AA7;
}

.pharmacies-item.js-active .pharmacies-item__btn svg {
  fill: #1C7AA7;
  transform: rotate(90deg);
}

.pharmacies-item__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.32px;
  color: #111111;
  transition: .3s linear;
}

.pharmacies-item__text {
  padding-top: 4px;
  padding-bottom: 8px;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.32px;
  color: #333333;
  opacity: 0.4;
}

.pharmacies-item__date {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 7px;
  border-bottom: 1px solid #D7D8D9;
}

.pharmacies-item__date svg {
  width: 20px;
  height: 20px;
  fill: #818C99;
}

.pharmacies-item__date span {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  margin-left: 6px;
  letter-spacing: -0.32px;
  color: #333333;
  opacity: 0.4;
}

.pharmacies-item__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pharmacies-item__btn span {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.32px;
  color: #6495C8;
}

.pharmacies-item__btn svg {
  width: 16px;
  height: 16px;
  fill: #818C99;
}

.pagination-pharmacies {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-pharmacies__btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F2F3F5;
  border: 0.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  transition: .3s linear;
}

.pagination-pharmacies__btn svg {
  fill: #1E1E1E;
  transition: .3s linear;
  width: 16px;
  height: 16px;
}

.pagination-pharmacies__btn:hover {
  background: #1C7AA7;
}

.pagination-pharmacies__btn:hover svg {
  fill: #fff;
}

.pagination-pharmacies__btn.disable svg {
  fill: rgba(51, 51, 51, 0.4);
}

.pagination-pharmacies__btn.left {
  margin-right: 15px;
}

.pagination-pharmacies__btn.left svg {
  transform: rotate(-180deg);
}

.pagination-pharmacies__btn.right {
  margin-left: 15px;
}

.pagination-pharmacies__number {
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: rgba(51, 51, 51, 0.4);
  transition: .3s linear;
  margin: 0 9px;
}

.pagination-pharmacies__number:hover {
  color: #1C7AA7;
}

.rules-global-program__header {
  min-height: 275px;
  display: flex;
  flex-direction: column;
  padding: 43px 60px 0 60px;
}

.rules-global-program__header.rules {
  background: linear-gradient(180deg, #A93077 0%, #BD354C 100%);
}

.rules-global-program__header.terms {
  background: #94A2AA;
}

.rules-global-program__header.cardiology {
  background: #ED1A36;
}

.rules-global-program__header.chronic-heart {
  background: #B41E8D;
}

.rules-global-program__header.diabetes-type {
  background: #0161B0;
}

.rules-global-program__logo {
  width: 225px;
}

.rules-global-program__logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.rules-global-program__text {
  padding-top: 50px;
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
  color: #fff;
  max-width: 700px;
}

.rules-global-program__bottom-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 19px;
  color: #818C99;
  padding-bottom: 10px;
}

.rules-program {
  padding: 40px 60px;
  padding-bottom: 0;
}

.rules-program p {
  margin-bottom: 0.7rem;
  font-size: 16px;
  line-height: 26px;
}

.rules-program__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  color: #DD098C;
  padding-bottom: 24px;
}

.rules-program__subtext {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #DD098C;
}

.rules-program__subtext b {
  display: block;
}

.rules-program__row-diagnostic {
  display: flex;
  align-items: stretch;
  margin-top: 40px;
  margin-bottom: 40px;
}

.rules-program__diagnostic-item {
  display: flex;
  align-items: stretch;
  padding: 0 40px 0px 25px;
  border-radius: 150px;
  width: 100%;
  max-width: 400px;
  margin-right: 30px;
  min-height: 100px;
}

.rules-program__diagnostic-item.cardiology {
  background: #ED1A36;
}

.rules-program__diagnostic-item.endocrinology {
  margin-right: 0;
  background: #0161B0;
}

.rules-program__diagnostic-item.endocrinology .rules-program__diagnostic-item--img img {
  width: 35px;
  height: 50px;
}

.rules-program__diagnostic-item--img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  min-width: 50px;
}

.rules-program__diagnostic-item--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.rules-program__diagnostic-item--col {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rules-program__diagnostic-item--title {
  font-weight: 700;
  font-size: 16px;
  line-height: 40px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.rules-program__diagnostic-item--text {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

.rules-program__list-circle {
  margin-top: 25px;
  counter-reset: section;
}

.rules-program__list-circle li {
  padding-left: 65px;
  font-size: 16px;
  line-height: 26px;
  color: #111111;
  position: relative;
  margin-bottom: 33px;
}

.rules-program__list-circle li:nth-child(3) {
  margin-bottom: 45px;
}

.rules-program__list-circle li:last-child {
  margin-bottom: 0;
}

.rules-program__list-circle li:before {
  counter-increment: section;
  content: counter(section);
  position: absolute;
  top: -10px;
  left: 5px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #CD3089;
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
}

.rules-program__list-circle li b {
  font-weight: 700;
}

.rules-program__list-circle li .pink {
  color: #CD3089;
}

.rules-program__list-circle li p {
  margin-bottom: 0.7rem;
}

.rules-program__list-circle .dot-list {
  margin-top: 13px;
}

.rules-program__list-circle .dot-list__row {
  display: flex;
  align-items: stretch;
  margin-top: 20px;
}

.rules-program__list-circle .dot-list__column {
  display: flex;
  flex-direction: column;
}

.rules-program__list-circle .dot-list__column:first-child {
  margin-right: 10px;
}

.rules-program__list-circle .dot-list__column img {
  margin-top: 10px;
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}

.rules-program__list-circle .dot-list li {
  margin-bottom: 15px;
  padding-left: 27px;
}

.rules-program__list-circle .dot-list li:before {
  content: '';
  width: 12px;
  height: 12px;
  background: #CD3089;
  border-radius: 50%;
  top: 8px;
  left: 0;
}

.rules-program__list-circle .dot-list li a {
  color: #1C7AA7;
  text-decoration: underline;
  word-break: break-all;
}

.rules-program__row-cards {
  display: flex;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.rules-program__item-card {
  width: 243px;
  height: 155px;
  margin: 0 15px;
}

.rules-program__item-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.rules-program__list-number-pink {
  list-style-type: none;
  /* Убираем исходные маркеры */
  counter-reset: numberList;
  margin-bottom: 50px;
}

.rules-program__list-number-pink li {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 16px;
}

.rules-program__list-number-pink li strong {
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #111111;
  display: block;
  margin-top: 18px;
}

.rules-program__list-number-pink li .pink {
  color: #DD098C;
}

.rules-program__list-number-pink li:before {
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  content: counter(numberList) ".";
  /* Добавляем к числам скобку */
  counter-increment: numberList;
  color: #DD098C;
}

.rules-program__list-number-pink li .dot-black {
  padding-top: 13px;
  display: flex;
  flex-direction: column;
}

.rules-program__list-number-pink li .dot-black span {
  padding-left: 20px;
  color: #111111;
  font-weight: 700;
  position: relative;
  margin-bottom: 12px;
}

.rules-program__list-number-pink li .dot-black span:last-child {
  margin-bottom: 0;
}

.rules-program__list-number-pink li .dot-black span:before {
  content: '';
  background: #111111;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 0;
}

.rules-program-table {
  width: 100%;
  margin-bottom: 40px;
}

.rules-program-table__wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.rules-program-table__col {
  border-right: 10px solid #fff;
  width: 100%;
}

.rules-program-table__col:last-child {
  border-right: 0;
}

.rules-program-table__col:nth-child(1) .rules-program-table__item:nth-child(1) {
  opacity: 0;
}

.rules-program-table__col:nth-child(1) .rules-program-table__item:nth-child(2) {
  background: #CD3089;
  min-height: 90px;
}

.rules-program-table__col:nth-child(1) .rules-program-table__item:nth-child(3) {
  background: #006495;
}

.rules-program-table__col:nth-child(3) {
  min-width: 248px;
}

.rules-program-table__col:nth-child(4) {
  min-width: 248px;
}

.rules-program-table__col .rules-program-table__item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: #FFFFFF;
  margin-bottom: 10px;
  min-height: 40px;
}

.rules-program-table__col .rules-program-table__item:last-child {
  margin-bottom: 0;
}

.rules-program-table__col .rules-program-table__item:nth-child(1) {
  min-height: 90px;
  background: #8DB6C9;
}

.rules-program-table__col .rules-program-table__item:nth-child(2) {
  background: #D09EBB;
}

.rules-program-table__col .rules-program-table__item:nth-child(3) {
  background: #B07096;
}

.rules-program-table__col .rules-program-table__item:nth-child(4) {
  background: #48819D;
}

.terms-global-program .rules-global-program__text {
  max-width: 900px;
}

.terms-global-program__wrapper {
  padding: 34px 60px;
  padding-bottom: 0;
}

.terms-global-program__number-list {
  counter-reset: numberList;
}

.terms-global-program__number-list li {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  position: relative;
  margin-bottom: 15px;
  padding-left: 32px;
}

.terms-global-program__number-list li:before {
  counter-increment: numberList;
  content: counter(numberList) ".";
  position: absolute;
  top: 0px;
  left: 1px;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #111111;
}

.terms-global-program__number-list li a {
  color: #1C7AA7;
  text-decoration: underline;
}

.terms-global-program__number-list li .phone-text {
  white-space: nowrap;
}

.table-health {
  margin-top: 40px;
}

.table-health__wrapper {
  display: flex;
  align-items: stretch;
}

.table-health__subtext {
  margin-top: 33px;
  padding-bottom: 34px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

.table-health__col {
  width: 100%;
}

.table-health__col:nth-child(1) {
  width: initial;
  margin-right: 10px;
  min-width: 139px;
}

.table-health__col:nth-child(1) .table-health__item:nth-child(2) {
  background: #ED1A36;
  min-height: 139px;
}

.table-health__col:nth-child(1) .table-health__item:nth-child(2) img {
  width: 80px;
  height: 65px;
}

.table-health__col:nth-child(1) .table-health__item:nth-child(3) {
  background: #0161B0;
  min-height: 139px;
}

.table-health__col:nth-child(1) .table-health__item:nth-child(3) img {
  width: 52px;
  height: 73px;
}

.table-health__col:nth-child(2) {
  margin-right: 10px;
}

.table-health__col .table-health__item {
  margin-bottom: 10px;
}

.table-health__col .table-health__item:last-child {
  margin-bottom: 0;
}

.table-health__col .table-health__item:nth-child(1) {
  min-height: 138px;
  background: #BEC8CE;
  padding: 0 22px;
}

.table-health__col .table-health__item:nth-child(2) {
  min-height: 39px;
  background: #FFC0B3;
}

.table-health__col .table-health__item:nth-child(3) {
  min-height: 39px;
  background: #F8AA99;
}

.table-health__col .table-health__item:nth-child(4) {
  min-height: 39px;
  background: #F26F62;
}

.table-health__col .table-health__item:nth-child(5) {
  min-height: 139px;
  background: #9AB3E2;
}

.table-health__item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #111111;
  text-align: center;
}

.cardiology-global-page .rules-global-program__text {
  max-width: 900px;
}

.cardiology-global-page__wrapper {
  padding: 30px 60px;
  padding-bottom: 0;
}

.cardiology-global-page__wrapper strong {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: #ED1A36;
}

.cardiology-global-page__list-like {
  margin-top: 30px;
  margin-bottom: 35px;
}

.cardiology-global-page__list-like.mt2 {
  margin-top: 17px;
}

.cardiology-global-page__list-like li {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #111111;
  padding-left: 32px;
  margin-bottom: 16px;
}

.cardiology-global-page__list-like li:before {
  content: '';
  width: 20px;
  height: 20px;
  background: url("../img/heart-red.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

.cardiology-global-page__row-img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -45px;
  margin-bottom: 25px;
}

.cardiology-global-page__row-img img {
  margin: 0 45px;
  -o-object-fit: contain;
     object-fit: contain;
}

.cardiology-global-page__row-img img:nth-child(1) {
  width: 114px;
}

.cardiology-global-page__row-img img:nth-child(2) {
  width: 82px;
}

.cardiology-global-page__row-img img:nth-child(3) {
  width: 155px;
}

.cardiology-global-page__row-img img:nth-child(4) {
  width: 127px;
}

.cardiology-global-page__title {
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
  color: #ED1A36;
}

.cardiology-global-page p {
  font-size: 16px;
  line-height: 26px;
  color: #111111;
  letter-spacing: -0.32px;
}

.cardiology-global-page p .red {
  color: #ED1A36;
  font-weight: bold;
}

.cardiology-global-page .сoronary-artery {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 647px;
}

.cardiology-global-page .сoronary-artery__text {
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cardiology-global-page .receipt-cardio-img {
  width: 100%;
  max-width: 748px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 54px;
}

.сoronary-artery-list {
  margin-top: 40px;
  margin-bottom: 48px;
}

.сoronary-artery-list__item {
  display: flex;
  align-items: stretch;
  margin-bottom: 40px;
}

.сoronary-artery-list__item:last-child {
  margin-bottom: 0;
}

.сoronary-artery-list__item:nth-child(2) .сoronary-artery-list__img img {
  min-width: 132px;
  width: 132px;
}

.сoronary-artery-list__img {
  width: 144px;
  min-width: 144px;
  margin-right: 44px;
}

.сoronary-artery-list__img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.сoronary-artery-list__text {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.32px;
  color: #111111;
}

.сoronary-artery-list__text b {
  display: contents;
}

.prasugel-text {
  margin-top: 40px;
  margin-bottom: 17px;
}

.prasugel-text__title {
  font-weight: 600;
  font-size: 23px;
  line-height: 26px;
  color: #ED1A36;
  padding-bottom: 17px;
}

.prasugel-text__text {
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.32px;
  color: #111111;
  margin-bottom: 16px;
}

.prasugel-text__text:last-child {
  margin-bottom: 0;
}

.prasugel-text__text .red {
  color: #ED1A36;
}

.prasugel-text__img {
  width: 100%;
  margin-top: 40px;
}

.prasugel-text__img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.chronic-heart-page .rules-global-program__text {
  max-width: 900px;
}

.chronic-heart-page__wrapper {
  padding: 34px 60px;
  padding-bottom: 0;
}

.chronic-heart-page__subtitle {
  font-weight: 500;
  font-size: 23px;
  line-height: 26px;
  color: #B41E8D;
}

.reasons-chf {
  margin-top: 34px;
}

.reasons-chf__title {
  font-weight: 500;
  font-size: 23px;
  line-height: 26px;
  color: #B41E8D;
  padding-bottom: 25px;
}

.reasons-chf__row {
  display: flex;
  align-items: center;
}

.reasons-chf__img {
  width: 60px;
  min-width: 60px;
  height: 48px;
}

.reasons-chf__img svg {
  width: 100%;
  height: 100%;
  fill: #B41E8D;
}

.reasons-chf__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-left: 30px;
  color: #111111;
}

.chf-not-sentence {
  background: rgba(180, 30, 141, 0.2);
  border-radius: 100px 0px 0px 100px;
  margin-top: 40px;
  margin-bottom: 37px;
  width: calc(100% + 60px);
  padding-right: 60px;
}

.chf-not-sentence__wrapper {
  display: flex;
  align-items: center;
  padding: 30px;
}

.chf-not-sentence__icon {
  width: 65px;
  height: 65px;
}

.chf-not-sentence__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.chf-not-sentence__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 33px;
}

.chf-not-sentence__title {
  font-weight: 700;
  font-size: 23px;
  line-height: 26px;
  color: #B41E8D;
}

.chf-not-sentence__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  margin-top: 17px;
  color: #111111;
  max-width: 666px;
}

.chronic-heart-treated__title {
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
  color: #B41E8D;
}

.chronic-heart-treated__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #111111;
  padding-top: 14px;
}

.chronic-heart-treated .сoronary-artery-list__item {
  margin-bottom: 35px;
}

.chronic-heart-treated .сoronary-artery-list__img {
  width: 134px;
  height: 134px;
  min-width: 134px;
}

.chronic-heart-treated .сoronary-artery-list__img img {
  width: 100% !important;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  min-width: initial !important;
}

.chronic-heart-treated .сoronary-artery-list__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.chronic-heart-treated .сoronary-artery-list__text strong {
  font-weight: 600;
  font-size: 23px;
  line-height: 26px;
  color: #B41E8D;
  padding-bottom: 13px;
}

.quote-chf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 30px 19px 40px;
  background: rgba(180, 30, 141, 0.2);
  border-radius: 0px 100px 100px 0px;
}

.quote-chf__text {
  margin-right: 15px;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #111111;
  max-width: 666px;
}

.quote-chf__img {
  width: 65px;
  min-width: 65px;
  height: 65px;
}

.quote-chf__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.chronic-heart-failure {
  margin-top: 40px;
}

.chronic-heart-failure__title {
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
  color: #B41E8D;
  padding-bottom: 17px;
}

.chronic-heart-failure__subtitle {
  font-weight: 500;
  font-size: 23px;
  line-height: 26px;
  color: #B41E8D;
  padding-bottom: 18px;
}

.chronic-heart-failure__text {
  font-size: 16px;
  line-height: 26px;
  color: #111111;
  margin-bottom: 28px;
}

.chronic-heart-failure .cardiology-global-page__list-like {
  margin-top: 5px;
}

.chronic-heart-failure .cardiology-global-page__list-like li:before {
  background: url("../img/heart-purple.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.chronic-heart-failure__img {
  width: 100%;
  margin-bottom: 37px;
}

.chronic-heart-failure__img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.chronic-heart-failure__img .mob {
  display: none;
}

.chronic-heart-failure__line-purple {
  width: 100%;
  height: 2px;
  background: #B41E8D;
  margin-top: 36px;
  margin-bottom: 27px;
}

.chronic-heart-failure__line-purple.two {
  margin-top: 20px;
}

.chronic-heart-failure__epileron-start {
  width: 100%;
  margin-top: 15px;
}

.chronic-heart-failure__epileron-start img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.chronic-heart-failure__epileron-start img.mob {
  display: none;
}

.chronic-heart-failure__epileron-start--text {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  color: #B41E8D;
  margin-top: 27px;
}

.diabetes-type-global__wrapper {
  padding: 34px 60px;
  padding-bottom: 0;
}

.diabetes-type-global__wrapper p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.32px;
  color: #111111;
}

.diabetes-type-global__wrapper .chf-not-sentence {
  background: rgba(1, 97, 176, 0.3);
  margin-bottom: 53px;
}

.diabetes-type-global__wrapper .chf-not-sentence.two {
  background: transparent;
  margin-top: 22px;
  margin-bottom: 0;
}

.diabetes-type-global__wrapper .chf-not-sentence.two .chf-not-sentence__wrapper {
  padding: 0;
}

.diabetes-type-global__wrapper .chf-not-sentence__wrapper {
  padding: 18px 30px;
  width: 100%;
  padding-right: 0;
}

.diabetes-type-global__wrapper .chf-not-sentence__icon {
  min-width: 65px;
}

.diabetes-type-global__wrapper .chf-not-sentence__content {
  width: 100%;
}

.diabetes-type-global__wrapper .chf-not-sentence__text {
  margin-top: 0;
  width: 100%;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #0161B0;
}

.diabetes-type-global__img-one {
  width: 100%;
  margin-bottom: 44px;
}

.diabetes-type-global__img-one .mobile {
  display: none;
}

.diabetes-type-global__img-one img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.diabetes-type-global__title {
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
  color: #0161B0;
}

.diabetes-type-global__title.center {
  text-align: center;
}

.diabetes-type-global__subtitle {
  font-weight: 700;
  font-size: 23px;
  line-height: 26px;
  color: #0161B0;
}

.diabetes-type-global .сoronary-artery-list {
  margin-top: 24px;
}

.diabetes-type-global .сoronary-artery-list.two .сoronary-artery-list__text {
  color: #111111;
}

.diabetes-type-global .сoronary-artery-list.two .сoronary-artery-list__text b {
  color: #111111;
}

.diabetes-type-global .сoronary-artery-list.two .сoronary-artery-list__text .blue {
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #0161B0;
}

.diabetes-type-global .сoronary-artery-list__img {
  min-width: 134px !important;
  width: 134px !important;
  height: 134px !important;
}

.diabetes-type-global .сoronary-artery-list__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.diabetes-type-global .сoronary-artery-list__text {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  color: #0161B0;
}

.diabetes-type-global .сoronary-artery-list__text .red {
  font-weight: bold;
  color: #ED1A36;
  display: contents;
}

.diabetes-type-global .сoronary-artery-list__text b {
  font-weight: bold;
  color: #0161B0;
}

.diabetes-type-global__two-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 19px 50px;
  background: rgba(1, 97, 176, 0.3);
  border-radius: 100px 0px 0px 100px;
  padding-right: 60px;
  width: calc(100% + 60px);
  margin-bottom: 40px;
}

.diabetes-type-global__two-row .diabetes-type-global__row-water {
  margin-bottom: 8px;
}

.diabetes-type-global__two-row .diabetes-type-global__row-water:last-child {
  margin-bottom: 0;
}

.diabetes-type-global__row-water {
  display: flex;
  align-items: center;
}

.diabetes-type-global__row-water svg {
  width: 26px;
  min-width: 26px;
  height: 36px;
  fill: #0161B0;
  margin-right: 30px;
}

.diabetes-type-global__row-water span {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #0161B0;
}

.diabetes-type-global__img-time {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diabetes-type-global__img-time img {
  width: 100%;
  max-width: 540px;
  -o-object-fit: contain;
     object-fit: contain;
}

.diabetes-type-global .line-blue {
  margin-top: 42px;
  margin-bottom: 34px;
  height: 2px;
  background: #0161B0;
}

.diabetes-type-global__list-water .diabetes-type-global__row-water {
  margin-bottom: 10px;
}

.diabetes-type-global__list-water .diabetes-type-global__row-water:last-child {
  margin-bottom: 0;
}

.diabetes-type-global__two-column {
  display: flex;
  align-items: stretch;
  margin-top: 30px;
  margin-bottom: 72px;
}

.diabetes-type-global__two-column--title {
  font-weight: 700;
  font-size: 23px;
  line-height: 30px;
  margin-top: 35px;
  color: #0161B0;
}

.diabetes-type-global__two-column--title .red {
  color: #ED1A36;
}

.diabetes-type-global__two-column--column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin-right: 55px;
}

.diabetes-type-global__two-column--column.qr-code {
  margin-right: 0;
  min-width: 250px;
  width: initial;
  align-items: center;
}

.diabetes-type-global__two-column--column.qr-code img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.diabetes-type-global__two-column--column.qr-code strong {
  margin-top: 20px;
  font-weight: 700;
  font-size: 23px;
  line-height: 26px;
  text-align: center;
  color: #0161B0;
}

.diabetes-type-global__two-column--column .chf-not-sentence {
  width: 100%;
  margin: 0;
}

.diabetes-purple-block {
  padding: 50px 60px 80px 60px;
  width: calc(100% + 120px);
  background: #DD098C;
  position: relative;
  left: -60px;
}

.diabetes-purple-block__title {
  width: 223px;
}

.diabetes-purple-block__title img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.diabetes-purple-block__row {
  display: flex;
  align-items: stretch;
  margin-top: 50px;
}

.diabetes-purple-block__qr-code {
  min-width: 273px;
  width: 273px;
  height: 310px;
  overflow: hidden;
  border-radius: 30px;
  margin-right: 90px;
}

.diabetes-purple-block__qr-code img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.diabetes-purple-block__logo {
  width: 160px;
}

.diabetes-purple-block__logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.diabetes-purple-block__text {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.diabetes-purple-block__text strong {
  font-weight: 400;
  font-size: 26px;
  line-height: 24px;
  color: #fff;
}

.diabetes-purple-block__text a {
  font-weight: bold;
  font-size: 32px;
  line-height: 50px;
  color: #fff;
  margin-top: 17px;
}

.diabetes-purple-block__text span {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
}

@media (min-width: 650px) {
  .select__checkboxs {
    max-height: 299px;
  }
}

@media (max-width: 1600px) {
  .rules-program__title {
    padding-bottom: 20px;
  }

  .rules-program__diagnostic-item {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .rules-program__list-circle li:nth-child(4) b {
    display: block;
    padding-bottom: 10px;
  }

  .rules-program__list-circle .dot-list {
    margin-top: 30px;
  }

  .rules-program__row-cards {
    margin-top: 20px;
    justify-content: center;
  }

  .rules-program__list-number-pink {
    margin-bottom: 40px;
  }

  .rules-program-table__col:nth-child(3) {
    min-width: 200px;
  }

  .rules-program-table__col:nth-child(4) {
    min-width: 200px;
  }
}

@media (max-width: 1199.98px) {
  .container {
    padding: 0 32px;
  }

  .modal__content--image::before {
    width: 174px;
  }

  .modal__arrows {
    max-width: 895px;
  }

  .select__dropdown {
    right: 0;
    left: inherit;
  }

  .lk-global-page {
    flex-direction: column;
  }

  .lk-global-page__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 15px 0 15px;
  }

  .lk-global-page__header--logo {
    width: 215px;
  }

  .lk-global-page__header--logo img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }

  .lk-global-page__header--btn {
    width: 40px;
    height: 40px;
  }

  .lk-global-page__header--btn svg {
    width: 100%;
    height: 100%;
    fill: #111111;
  }

  .lk-global-page__sidebar {
    display: none;
  }

  .lk-global-page__content {
    padding: 30px 15px 53px 15px;
  }

  .lk-sidebar {
    display: block;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    top: 0;
    left: 0;
    min-width: initial;
    max-width: 100%;
    width: 100%;
    height: 100%;
    transform: translateY(-100%);
    transition: .3s linear;
    z-index: 999;
  }

  .lk-sidebar.js-active {
    opacity: 1;
    visibility: visible;
    transform: initial;
  }

  .lk-sidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
  }

  .lk-sidebar__header--right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .lk-sidebar__header--close {
    display: block;
    width: 30px;
    margin-left: 50px;
    height: 30px;
  }

  .lk-sidebar__header--close svg {
    width: 100%;
    height: 100%;
    fill: #11353F;
  }

  .lk-sidebar__wrapper {
    min-width: initial;
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    overflow: hidden;
    overflow-y: auto;
  }

  .lk-sidebar__user {
    margin: 0;
    flex-direction: row-reverse;
  }

  .lk-sidebar__user--img {
    width: 50px;
    height: 50px;
  }

  .lk-sidebar__user--title {
    margin-left: 0;
    margin-right: 18px;
    font-size: 16px;
    line-height: 24px;
  }

  .lk-sidebar__exit {
    padding: 8px 33px;
  }

  .lk-sidebar__exit span {
    text-transform: uppercase;
  }

  .lk-sidebar__bottom {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 76px;
    padding: 14px 30px 6px 30px;
    border: 1px solid #D7D8D9;
    box-shadow: 4px 4px 25px rgba(213, 213, 213, 0.25);
    border-radius: 10px;
    margin-top: 30px;
  }

  .lk-sidebar__bottom .login-global-page__form--btn {
    padding: 0 25px;
    margin: 0;
  }

  .lk-sidebar__bottom--text {
    margin: 0;
    box-shadow: none;
    border: none;
    background: none;
    padding: 0;
    align-items: flex-start;
    flex-direction: row;
    max-width: 375px;
    text-align: left;
  }

  .lk-sidebar__bottom--text span {
    text-align: left;
    max-width: 162px;
    margin-right: 32px;
  }

  .lk-sidebar-menu li {
    margin-bottom: 0;
  }

  .lk-sidebar-menu__item {
    min-height: 50px;
    border-bottom: 1px solid #D7D8D9;
    padding: 0;
    display: block;
    position: relative;
    left: -15px;
    width: calc(100% + 30px);
    padding: 0 15px;
  }

  .lk-sidebar-menu__item:first-child {
    border-top: 1px solid #D7D8D9;
  }

  .lk-global-pharmacies__header {
    margin-bottom: 20px;
  }

  .lk-global-pharmacies__btns {
    padding-right: 15px;
  }

  .lk-global-pharmacies__btn {
    margin-left: 20px;
  }

  .lk-global-pharmacies__list {
    max-width: initial;
    margin: 0 -29px;
    width: calc(100% + 58px);
  }

  .lk-global-pharmacies__list.map {
    width: 100%;
  }

  .lk-global-pharmacies__list.map .simplebar-content {
    max-width: 100%;
    margin: 0 -30px;
  }

  .lk-global-pharmacies__item {
    margin: 0 29px;
    margin-bottom: 22px;
    width: calc(50% - 58px);
  }

  .lk-global-pharmacies__pagination {
    max-width: 100%;
    margin-top: 10px;
  }

  .lk-global-pharmacies__map {
    max-width: 100%;
  }

  .rules-global-program__header {
    margin-top: 25px;
    padding: 43px 15px 60px 15px;
  }

  .rules-program {
    padding: 40px 15px;
    padding-bottom: 0;
  }

  .terms-global-program__wrapper {
    padding: 34px 15px;
    padding-bottom: 0;
  }

  .cardiology-global-page__wrapper {
    padding: 40px 15px;
    padding-bottom: 0;
  }

  .cardiology-global-page__row-img {
    flex-wrap: wrap;
    margin: 0 -30px;
  }

  .cardiology-global-page__row-img img {
    margin: 0 30px;
    margin-bottom: 20px;
  }

  .chronic-heart-page__wrapper {
    padding: 40px 15px;
    padding-bottom: 0;
  }

  .chf-not-sentence {
    width: calc(100% + 15px);
    padding-right: 15px;
  }

  .diabetes-type-global__wrapper {
    padding: 40px 15px;
    padding-bottom: 0;
  }

  .diabetes-type-global__two-row {
    padding-right: 15px;
    width: calc(100% + 15px);
  }

  .diabetes-purple-block {
    padding-left: 15px;
    padding-right: 15px;
    width: calc(100% + 30px);
    left: -15px;
  }
}

@media (max-width: 991.98px) {
  .container {
    padding: 0 24px;
  }

  .modal__content--image::before {
    width: 160px;
  }

  .modal__arrows {
    max-width: 100%;
    width: calc(100% - 48px);
  }
}

@media (max-width: 759.98px) {
  .modal__content--image::before {
    display: none;
  }

  .modal__arrows {
    display: none;
  }

  .rules-program-table {
    overflow-x: auto;
    width: calc(100% + 15px);
    padding-right: 15px;
  }

  .rules-program-table__wrapper {
    min-width: 700px;
  }

  .table-health {
    overflow-x: auto;
    width: calc(100% + 15px);
    padding-right: 15px;
  }

  .table-health__wrapper {
    overflow-x: auto;
    min-width: 700px;
  }

  .diabetes-type-global__two-column {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .diabetes-type-global__two-column--column {
    margin-right: 0;
  }

  .diabetes-type-global__two-column--column.qr-code {
    margin-top: 40px;
  }

  .diabetes-type-global__two-column--column.qr-code img {
    max-width: 320px;
  }

  .diabetes-type-global__two-column--column .chf-not-sentence {
    width: calc(100% + 15px);
    padding-right: 15px;
  }
}

@media (max-width: 649.98px) {
  .container {
    padding: 0 16px;
  }

  .modal.modal-mob {
    left: -100%;
    transition: 0.3s;
  }

  .modal.modal-mob .modal__content {
    transform: none;
    opacity: 1;
  }

  .modal.modal-mob.active {
    left: 0;
    opacity: 1;
    visibility: visible;
  }

  .modal.modal-mob.active .modal__content {
    opacity: 1;
    transform: none;
  }

  .select__trigger {
    padding-left: 15px;
  }

  .select__trigger > a,
  .select__trigger span {
    flex-wrap: wrap;
    padding-left: 0;
  }

  .select__checkboxs {
    padding: 8px 16px;
  }

  .select__checkbox {
    margin: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .modal-thanks-registry {
    padding: 20px 30px;
    max-width: 300px;
    min-width: 300px;
  }

  .header.mode {
    min-height: 70px;
  }

  .login-global-page.mode .login-global-page__logo-key {
    max-width: 270px;
    height: 80px;
  }

  .login-global-page.mode .login-global-page__subtitle {
    padding-top: 20px;
  }

  .login-global-page__wrapper {
    padding-top: 20px;
    padding-bottom: 97px;
  }

  .login-global-page__card {
    max-width: 320px;
  }

  .login-global-page__card--text {
    bottom: -49px;
    right: -13px;
  }

  .login-global-page__card {
    height: 202px;
  }

  .lk-page__img {
    margin-top: 34px;
  }

  .lk-page__title {
    padding: 25px 0;
  }

  .lk-page__content {
    flex-direction: column;
    align-items: center;
    padding-bottom: 58px;
  }

  .lk-page__col.small {
    margin-left: 0;
    min-width: initial;
    margin-top: 21px;
  }

  .lk-page__col--item {
    align-items: center;
  }

  .lk-page__btn svg {
    margin-left: 42px;
  }

  .lk-global-page__header {
    padding: 20px;
    padding-bottom: 0;
  }

  .lk-sidebar__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .lk-sidebar__header--right {
    margin-top: 15px;
  }

  .lk-sidebar__header--close {
    position: absolute;
    top: 46px;
    right: 20px;
  }

  .lk-sidebar__user {
    flex-direction: row;
  }

  .lk-sidebar__user--title {
    margin-left: 20px;
  }

  .lk-sidebar__exit {
    position: relative;
    left: -15px;
    width: calc(100% + 30px);
    padding: 8px 56px;
  }

  .lk-sidebar__bottom {
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    border: 0;
    flex-direction: column;
    margin-bottom: 30px;
  }

  .lk-sidebar__bottom .login-global-page__form--btn {
    max-width: 100%;
    width: 100%;
  }

  .lk-sidebar__bottom--text {
    border: 1px solid #D7D8D9;
    box-shadow: 4px 4px 25px rgba(213, 213, 213, 0.25);
    border-radius: 10px;
    width: 100%;
    max-width: 100%;
    padding: 14px 30px;
    margin-top: 30px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .lk-sidebar__bottom--text span {
    text-align: center;
    margin-right: 0;
    max-width: 100%;
    font-size: 15px;
  }

  .lk-sidebar-menu {
    margin-top: 13px;
  }

  .lk-sidebar-menu__item {
    padding-right: 30px;
  }

  .lk-sidebar-menu__item--title {
    font-weight: 500;
    font-size: 16px;
    line-height: 40px;
  }

  .lk-personal-data-block__content {
    padding-bottom: 0;
  }

  .lk-personal-card-row {
    flex-direction: column;
  }

  .lk-personal-card-row__col:first-child {
    margin-right: 0;
    margin-bottom: 25px;
  }

  .lk-personal-card-info {
    grid-gap: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .lk-personal-card-info__item {
    margin-bottom: 25px;
  }

  .lk-personal-your-doctor__row {
    flex-direction: column;
  }

  .lk-personal-your-doctor__row .lk-personal-card-info__item:last-child {
    margin-bottom: 0;
  }

  .lk-global-pharmacies__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
  }

  .lk-global-pharmacies__btns {
    padding-right: 0;
    margin-top: 20px;
  }

  .lk-global-pharmacies__btn {
    margin-left: 0;
    margin-right: 20px;
  }

  .lk-global-pharmacies__search-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .lk-global-pharmacies__search-wrapper--text {
    margin-left: 0;
    margin-top: 20px;
  }

  .lk-global-pharmacies__search-wrapper--text.map {
    display: none;
  }

  .lk-global-pharmacies__list.map {
    display: none;
  }

  .lk-global-pharmacies__list {
    width: 100%;
    margin: 0;
  }

  .lk-global-pharmacies__list:before {
    display: none;
  }

  .lk-global-pharmacies__list.map .simplebar-content {
    margin: 0;
    margin-right: 20px;
  }

  .lk-global-pharmacies__list.map .simplebar-content:before {
    display: none;
  }

  .lk-global-pharmacies__list.map .simplebar-track.simplebar-vertical {
    right: 0;
  }

  .lk-global-pharmacies__item {
    margin: 0;
    width: 100%;
    margin-bottom: 15px;
  }

  .lk-global-pharmacies__pagination.map {
    display: none;
  }

  .lk-global-pharmacies__map--wrapper .pharmacies-item {
    left: 0;
  }

  .lk-global-pharmacies__map--wrapper .pharmacies-item {
    max-width: 330px;
    min-width: 330px;
  }

  .lk-global-pharmacies__map--geo {
    right: initial;
    bottom: initial;
    top: 20px;
    left: 0px;
  }

  .lk-global-pharmacies__map {
    position: relative;
    left: -15px;
    height: 650px;
    max-width: calc(100% + 30px);
    width: calc(100% + 30px);
  }

  .gm-style .gm-style-iw-c .gm-style-iw-d .pharmacies-item {
    max-width: 330px;
    min-width: 330px;
  }

  .gm-style .gm-style-iw-c .gm-style-iw-d .pharmacies-item {
    max-width: 330px;
    min-width: 330px;
  }

  .rules-global-program__header {
    padding: 30px 15px;
    padding-bottom: 50px;
    min-height: initial;
  }

  .rules-global-program__text {
    margin-top: 18px;
    padding-top: 0;
  }

  .rules-program__row-diagnostic {
    margin-top: 23px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .rules-program__diagnostic-item {
    max-width: 100%;
    min-height: 126px;
  }

  .rules-program__diagnostic-item.endocrinology {
    margin-top: 20px;
  }

  .rules-program__list-circle {
    margin-top: 5px;
  }

  .rules-program__list-circle li {
    margin-bottom: 32px;
  }

  .rules-program__list-circle .dot-list__row {
    flex-direction: column;
  }

  .rules-program__list-circle .dot-list {
    margin-top: 40px;
  }

  .rules-program__list-circle .dot-list .phone {
    display: block;
  }

  .rules-program__row-cards {
    flex-direction: column;
  }

  .rules-program__item-card {
    margin: 0;
    height: initial;
    width: 100%;
  }

  .rules-program__item-card:first-child {
    margin-bottom: 20px;
  }

  .rules-program__item-card img {
    height: initial;
  }

  .cardiology-global-page__row-img img {
    width: 80px !important;
  }

  .сoronary-artery-list__item {
    flex-direction: column;
    align-items: center;
  }

  .сoronary-artery-list__item:nth-child(2) .сoronary-artery-list__img img {
    min-width: 100px;
    width: 100px;
  }

  .сoronary-artery-list__img {
    min-width: 100px;
    width: 100px;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .сoronary-artery-list__img img {
    width: 100%;
  }

  .chf-not-sentence {
    border-radius: 30px;
    width: 100%;
  }

  .chf-not-sentence__wrapper {
    flex-direction: column;
  }

  .chf-not-sentence__icon {
    margin-bottom: 20px;
  }

  .chf-not-sentence__content {
    margin-left: 0;
  }

  .chf-not-sentence__title {
    text-align: center;
  }

  .chf-not-sentence__text {
    text-align: center;
  }

  .chronic-heart-treated .сoronary-artery-list__img {
    min-width: 100px;
    width: 100px;
  }

  .chronic-heart-failure__img .pc {
    display: none;
  }

  .chronic-heart-failure__img .mob {
    display: block;
  }

  .chronic-heart-failure__epileron-start img.pc {
    display: none;
  }

  .chronic-heart-failure__epileron-start img.mob {
    display: block;
  }

  .diabetes-type-global__wrapper .chf-not-sentence__wrapper {
    padding: 18px 15px;
  }

  .diabetes-type-global__img-one .pc {
    display: none;
  }

  .diabetes-type-global__img-one .mobile {
    display: block;
  }

  .diabetes-type-global__two-row {
    width: 100%;
    border-radius: 30px;
    padding: 15px;
  }

  .diabetes-type-global__two-column--column .chf-not-sentence {
    padding-right: 0;
    width: 100%;
  }

  .diabetes-purple-block {
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .diabetes-purple-block__row {
    flex-direction: column-reverse;
    align-items: center;
  }

  .diabetes-purple-block__qr-code {
    margin-right: 0;
    margin-top: 20px;
  }

  .diabetes-purple-block__contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media all and (max-width: 649.98px) {
  .modal__body {
    padding: 0;
  }
}

@media (max-width: 360px) {
  .login-global-page__card--text {
    bottom: -30px;
  }

  .login-global-page__card {
    max-width: 290px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}