@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --index: calc(1vw + 1vh);
  --font-size: 16px;
  --line-height: 1.4;
  --item-width: 325px;
  --burger-color: white;
  --burger-color-active: white;
  --container-width: 1861px;
  --container-padding: 30px;
  --font-default: "Inter", sans-serif;
  --transition: cubic-bezier(0.445, 0.050, 0.550, 0.950);
  --transition2: cubic-bezier(0.785, 0.135, 0.150, 0.860);
  --transition3: cubic-bezier(0.715, -0.235, 0.120, 1.300);
  --bg-body: white;
  --color-body: #000000;
  --color-text: #000000;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-black2: #262424;
  --color-gray1: #E3E3E3;
  --color-gray2: #E6E6E6;
  --color-gray3: #DADADA;
  --color-gray4: #E1E1E1;
  --color-gray5: #D9D9D9;
  --color-gray: #DBDBDB;
  --color-grayLight: #DFDACC;
  --color-grayLight2: #FFFBF6;
  --color-orange: #FFF3C8;
}
@media screen and (max-width: 480px) {
  :root {
    --item-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --container-padding: 10px;
  }
}

/* responsive */
@font-face {
  font-family: "Diatype";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Diatype/ABCDiatype-Regular.woff2") format("woff2");
  font-display: swap;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none !important;
}

a {
  transition: 0.3s ease;
}
a:hover {
  opacity: 0.6;
}

input,
a {
  outline: none !important;
  color: var(--color-text);
}

button,
input,
textarea {
  font-family: var(--font-default);
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

*::-webkit-input-placeholder {
  opacity: 1;
}

*:-moz-placeholder {
  opacity: 1;
}

*::-moz-placeholder {
  opacity: 1;
}

*:-ms-input-placeholder {
  opacity: 1;
}

input:focus {
  outline: none;
}

html {
  font-size: var(--font-size);
}

body {
  background: var(--bg-body);
  font-size: var(--font-size);
  min-width: 320px;
  position: relative;
  line-height: var(--line-height);
  font-family: var(--font-default);
  font-weight: normal;
  font-style: normal;
  color: var(--color-body);
  border-top: 8px solid var(--color-blue-light);
}
@media screen and (max-width: 992px) {
  body {
    border-top: 4px solid var(--color-blue-light);
  }
}
body.no-scroll {
  overflow: hidden;
  padding-right: 15px;
}
@media screen and (max-width: 992px) {
  body.no-scroll {
    padding-right: 0px;
  }
}
.hidden {
  display: none !important;
  visibility: hidden !important;
}

@media screen and (min-width: 480px) {
  .-md4-hidden {
    display: none !important;
  }
}

@media screen and (max-width: 480px) {
  .-md3-hidden {
    display: none !important;
  }
}

@media screen and (max-width: 1280px) {
  .-md1-hidden {
    display: none !important;
  }
}
.hide{ display: none!important;}
.text-right { text-align: right; }
.text-left { text-align: left; }
.text-center { text-align: center; }

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  width: 100%;
  max-width: var(--container-width);
}
@media (max-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
@media screen and (max-width: 1200px) {
  .container {
    max-width: 1100px;
  }
}
@media screen and (max-width: 992px) {
  .container {
    max-width: 900px;
  }
}
@media screen and (max-width: 768px) {
  .container {
    max-width: 640px;
  }
}

.container-fluid {
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
  margin-right: auto;
  margin-left: auto;
}

.wrapper {
  min-height: 100vh;
  overflow: hidden;
}

.burger-content {
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  z-index: 999;
}
.burger-content__body {
  position: absolute;
  left: -320px;
  top: 0;
  height: 100%;
  width: 320px;
  background: #203254;
  transition: 0.3s ease;
  padding: 45px 15px 15px;
}
.burger-content__body.active {
  left: 0;
}
.burger-content__body .burger {
  margin-bottom: 30px;
}
.burger-content__body-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.burger-content__body-wrap form {
  display: flex;
  height: 40px;
  max-width: 372px;
  width: 100%;
  position: relative;
}
.burger-content__body-wrap form button {
  display: flex;
  align-items: center;
  border: none;
  background: #FE9134;
  padding: 0 8px;
}
.burger-content__body-wrap form input {
  border: none;
  padding: 0 10px;
  flex-grow: 1;
}
.burger-content__body-wrap form input::-moz-placeholder {
  color: #BBBBBB;
}
.burger-content__body-wrap form input::placeholder {
  color: #BBBBBB;
}
.burger-content__body-wrap select {
  display: flex;
  align-items: center;
  background: rgba(32, 50, 84, 0.2);
  border: 1px solid white;
  display: flex;
  align-items: center;
  padding: 0 10px;
  -moz-column-gap: 11px;
       column-gap: 11px;
  width: 100%;
  height: 40px;
  color: white;
  -webkit-appearance: none;
  background-image: url("../img/header-dropdown.svg");
  background-position: right 10px center;
  background-size: 15.39px 9.14px;
  background-repeat: no-repeat;
}
.burger-content__body-wrap .header__accent-btn {
  height: 40px;
  text-align: center;
  justify-content: center;
}
@media screen and (max-width: 1400px) {
  .burger-content__body-wrap .header__accent-btn {
    display: flex;
  }
}
.burger-content__body-wrap ul {
  display: flex;
  flex-direction: column;
  margin: 0 -15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.burger-content__body-wrap ul li {
  list-style: none;
}
.burger-content__body-wrap ul li a {
  display: block;
  text-decoration: none;
  color: white;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.burger {
  cursor: pointer;
  display: block;
  width: 32px;
  position: relative;
  z-index: 1;
  padding-bottom: 10px;
}
.burger i {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--burger-color);
  transition: all 0.2s ease-out;
  border-radius: 100px;
}
.burger i::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--burger-color);
  position: absolute;
  left: 0;
  transition: all 0.2s ease-out;
  top: -12px;
  border-radius: 100px;
}
.burger i::after {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--burger-color);
  position: absolute;
  left: 0;
  transition: all 0.2s ease-out;
  bottom: -12px;
  border-radius: 100px;
}
.burger.active i {
  background: transparent;
}
.burger.active i::before {
  top: 0;
  transform: rotateZ(45deg);
  background: var(--burger-color-active);
}
.burger.active i::after {
  bottom: 0;
  transform: rotateZ(-45deg);
  background: var(--burger-color-active);
}

label {
  cursor: pointer;
}

.title {
  background-color: #2AA5A0;
  background-image: linear-gradient(65deg, #6063CD, #77B1F1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: -moz-fit-content;
  width: fit-content;
}
.title_medium {
  font-weight: 500;
  font-size: 40px;
}
.title_extra-bold {
  font-weight: 800;
  font-size: 30px;
}
.title_ucase {
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .title_medium, .title_extra-bold {
    font-size: 20px;
  }
}

.subtitle {
  font-weight: 500;
  font-size: 30px;
}
.subtitle_medium {
  font-size: 25px;
}
.subtitle_semi-bold {
  font-weight: 600;
}
.subtitle_bold {
  font-weight: 700;
}
.subtitle_fz16 {
  font-size: 16px;
}
.subtitle_fz20 {
  font-size: 20px;
}
.subtitle_fz21 {
  font-size: 21px;
}
@media screen and (max-width: 768px) {
  .subtitle {
    font-size: 14px;
  }
  .subtitle_medium {
    font-size: 17px;
}
}

.input-field {
  display: flex;
  flex-direction: column;
}
.input-field__label {
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 5px;
}
.input-field__input {
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text);
  padding: 21px 15px;
}

.notification {
  padding: 40px 30px;
  background: #EAF4FE url("data:image/svg+xml;utf8,<svg width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' style='fill: none; stroke: %23203254; stroke-width: 1; stroke-dasharray: 4 4'/></svg>") center center;
}
.notification__text {
  font-size: 14px;
  font-weight: 400;
}
.notification__text-2 {
  margin-bottom: 4px;
}
.notification__text-2:last-child {
  margin-bottom: 0;
}
.notification__text-3 {
  font-weight: 500;
  font-size: 16px;
}
.notification_error {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(255, 8, 0, 0.39) url("data:image/svg+xml;utf8,<svg width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' style='fill: none; stroke: black; stroke-width: 1; stroke-dasharray: 4 4'/></svg>") center center;
}
.notification_error .notification__title {
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 12px;
}
.notification_error .notification__text {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}
.notification_error .notification__text-2 {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 10px;
}
.notification_error.active {
  display: flex;
}
.notification_error::before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  background: url(../img/cross.svg) center center/contain no-repeat;
  margin-right: 30px;
  flex-shrink: 0;
}
.notification_success {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 24px;
  text-align: center;
}
.notification_success .notification__title {
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 20px;
}
.notification_success .notification__text {
  font-weight: 500;
  font-size: 16px;
}
.notification_success::before {
  content: "";
  display: block;
  width: 29px;
  height: 29px;
  background: url(../img/check.svg) center center/contain no-repeat;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.notification_alert {
  display: none;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 46px;
       column-gap: 46px;
  padding: 16px 48px;
}
.notification_alert .notification__text {
  font-weight: 500;
  font-size: 16px;
}
.notification_alert::before {
  content: "";
  display: block;
  width: 30px;
  height: 35px;
  background: url(../img/alert.svg) center center/contain no-repeat;
  flex-shrink: 0;
}
.notification_alert.active {
  display: flex;
}
.notification_alert-2 {
  display: none;
  justify-content: center;
  flex-direction: column;
  row-gap: 15px;
  padding: 29px 57px;
}
.notification_alert-2 .notification__row {
  display: flex;
  align-items: center;
  -moz-column-gap: 48px;
       column-gap: 48px;
}
.notification_alert-2 .notification__row::before {
  content: "";
  display: block;
  width: 30px;
  height: 35px;
  background: url(../img/alert.svg) center center/contain no-repeat;
  flex-shrink: 0;
}
.notification_alert-2 .notification__text {
  font-weight: 500;
  font-size: 16px;
}
.notification_alert-2 .notification__text-2 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 0;
}
.notification_alert-2.active {
  display: flex;
}
.notification a {
  text-decoration: none;
  color: #B3D8FF;
}

.notification__text_box {
  width: 100%;
}

.notification__btn_box {
  margin-top: 20px;
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.btn {
  transition: 0.3s ease;
  cursor: pointer;
  background-color: #203254;
  padding: 11px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border: none;
  text-align: center;
  max-width: 250px;
  width: 100%;
  text-decoration: none;
  display: block;
  line-height: 40px;
}
.btn:hover {
  opacity: 0.6;
}
.btn_blue {
  background-color: #77B1F1;
  font-size: 19px;
  padding: 18px;
  max-width: unset;
  text-align: center;
}
.btn_small {
  max-width: 211px;
  min-height: 63px;
}
.btn_h54 {
  height: 54px;
}
.btn.btn-w33 {
  max-width: 33%;
}

@media screen and (max-width: 768px) {
  .btn {
    font-size: 14px;
    line-height: 14px;
  }
}

.tabs__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  -moz-column-gap: 33px;
       column-gap: 33px;
}
.tabs__content-wrapper {
  margin-top: 25px;
}
.tabs__content {
  display: none;
}
.tabs__content.active {
  display: block;
}
.tabs__content-text {
  display: block;
  font-size: 14px;
  margin-top: 25px;
}
.tabs__content-text span {
  font-weight: 600;
}
.tabs__item {
  max-width: 260px;
}
@media screen and (max-width: 1400px) {
  .tabs__wrapper {
    flex-direction: column;
    row-gap: 15px;
  }
  .tabs__item {
    max-width: unset;
  }
}
@media screen and (max-width: 768px) {
  .tabs__content-text {
    font-size: 12px;
    margin-top: 15px;
  }
}

.tab {
  border: #77B1F1 1px solid;
  color: #77B1F1;
  padding: 18px 8px;
  font-weight: 600;
  font-size: 19px;
  text-align: center;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
}
.tab.active {
  background-color: #77B1F1;
  color: #fff;
}
.tab.active:hover {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .tab {
    font-size: 14px;
  }
}

.switch-block {
  display: none;
}
.switch-block.active {
  display: block;
}

.user-avatar {
  width: 100%;
  border-radius: 50%;
  border: #000 1px solid;
  overflow: hidden;
}
.user-avatar__content {
  width: 100%;
  padding-top: 100%;
  position: relative;
}
.user-avatar__content img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.user-cards {
  max-width: 741px;
}
.user-cards__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(57deg, #6063CD 13.17%, #77B1F1 90.42%);
  min-height: 272px;
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
}
.user-cards__row {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  transform: translateY(7.5%);
}
.user-cards__row:last-child {
  transform: translateY(-7.5%);
}
.user-cards__row:last-child .user-cards__item-wrapper:first-child::before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateY(100%) translateX(-50%);
  display: block;
  width: 53px;
  height: 42px;
  background: url("../img/user-cards-decorate.svg") center center/contain no-repeat;
}
.user-cards__item-wrapper {
  width: 100px;
  position: relative;
}
.user-cards__item {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  padding-top: 115%;
  background-color: #203254;
  -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
          clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.user-cards__item-content {
  padding: 18%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: #fff;
  -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
          clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 3px;
}
.user-cards__item-content:before, .user-cards__item-content:after {
  content: "";
  display: block;
  width: 25px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.user-cards__item-content:before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.user-cards__item-avatar {
  flex-shrink: 0;
  z-index: 1;
  max-width: 60px;
}
.user-cards__item-title {
  font-weight: 700;
  font-size: 11px;
  text-align: center;
}
.user-cards__footer {
  padding: 15px 0 16px;
  border-bottom: #97A4B8 1px solid;
  display: flex;
  flex-direction: row;
  -moz-column-gap: 35px;
       column-gap: 35px;
  position: relative;
}
.user-cards__footer-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-shrink: 0;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.user-cards__footer-block {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.user-cards__footer-avatar {
  flex-shrink: 0;
  max-width: 60px;
  width: 60px;
}
.user-cards__user-property {
  font-size: 14px;
}
.user-cards__user-property-text {
  font-weight: 700;
  font-size: 14px;
}
.user-cards__user-property-value {
  font-weight: 500;
  font-size: 14px;
}
.user-cards__user-send-msg-link {
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  color: #FE9134;
  padding-left: 21px;
  position: relative;
}
.user-cards__user-send-msg-link:before {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  background: url("../img/mail.svg") center center/contain no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.user-cards__footer-close {
  transition: 0.3s ease;
  position: absolute;
  top: 15px;
  right: 0;
  width: 27px;
  height: 27px;
  display: block;
  border: #203254 1px solid;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
}
.user-cards__footer-close:hover {
  opacity: 0.6;
}
.user-cards__footer-close:before, .user-cards__footer-close:after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background-color: #203254;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.user-cards__footer-close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.user-cards__footer-close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (max-width: 1200px) {
  .user-cards__row {
    flex-direction: column-reverse;
    align-items: center;
    transform: translateY(10%);
  }
  .user-cards__row:last-child .user-cards__item-wrapper:nth-child(2n) {
    transform: translateX(-25%) translateY(10%);
  }
  .user-cards__row:last-child .user-cards__item-wrapper:nth-child(2n-1) {
    transform: translateX(25%) translateY(20%);
  }
  .user-cards__row:last-child .user-cards__item-wrapper:first-child {
    transform: translateX(25%);
  }
  .user-cards__row:last-child .user-cards__item-wrapper:last-child {
    transform: translateX(-25%) translateY(30%);
  }
  .user-cards__item-wrapper:nth-child(2n) {
    transform: translateX(-25%);
  }
  .user-cards__item-wrapper:nth-child(2n-1) {
    transform: translateX(25%);
  }
}
@media screen and (max-width: 768px) {
  .user-cards__footer {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
  }
  .user-cards__footer-row {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
  }
}

.table {
  border-collapse: collapse;
  width: 100%;
  min-width: 558px;
}
.table th {
  border-bottom: rgba(32, 50, 84, 0.53) 1px solid;
  padding-bottom: 5px;
  font-weight: 700;
  font-size: 20px;
  white-space: nowrap;
}

.table td {
  font-weight: 400;
  font-size: 20px;
  white-space: nowrap;
  vertical-align: top;
}

.table.id__table tr td:first-child,.table.id__table tr th:first-child {
  max-width: 70px;
  overflow: hidden;
}

@media screen and (max-width: 1400px) {
  .table th,
  .table td {
    font-size: 16px;
  }
}
@media screen and (max-width: 1200px) {
  .table th,
  .table td {
    font-size: 14px;
  }
}

.table-wrapper {
  overflow-x: auto;
}

.steps {
  list-style: none;
  counter-reset: myCustomCounter;
  position: relative;
}
.steps li {
  display: flex;
  align-items: center;
  counter-increment: myCustomCounter;
  margin-top: 35px;
}
.steps li:before {
  content: counter(myCustomCounter);
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #FE9134;
  color: #fff;
  text-align: center;
  line-height: 46px;
  margin-right: 10px;
  flex-shrink: 0;
}
.steps li:first-child {
  margin-top: 0;
}
.steps li:after {
  content: "";
  position: absolute;
  top: 0;
  left: 23px;
  width: 0;
  height: 100%;
  border-left: 1px dashed #97A4B8;
  z-index: -1;
}

.header {
  background: linear-gradient(270deg, rgba(97, 169, 241, 0.85) 0%, #5F62CD 63.26%);
  min-height: 128px;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 17px;
}
@media screen and (max-width: 1440px) {
  .header {
    font-size: 15px;
  }
}
@media screen and (max-width: 992px) {
  .header {
    min-height: 80px;
  }
}
.header__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__left {
  display: flex;
  align-items: center;
  -moz-column-gap: 37px;
       column-gap: 37px;
}
@media screen and (max-width: 768px) {
  .header__left {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo img {
  max-width: 100%;
}
@media screen and (max-width: 992px) {
  .header__logo {
    max-width: 150px;
  }
}
@media screen and (max-width: 480px) {
  .header__logo {
    max-width: 130px;
  }
}
.header__right {
  display: flex;
  -moz-column-gap: 18.45px;
       column-gap: 18.45px;
  height: 50px;
}
@media screen and (max-width: 768px) {
  .header__right {
    height: auto;
    -moz-column-gap: 13px;
         column-gap: 13px;
  }
}
.header__right form {
  display: flex;
  height: 50px;
  max-width: 372px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .header__right form {
    display: none;
  }
}
.header__right form button {
  display: flex;
  align-items: center;
  border: none;
  background: #FE9134;
  padding: 0 8px;
}
.header__right form input {
  border: none;
  padding: 0 10px;
  flex-grow: 1;
}
.header__right form input::-moz-placeholder {
  color: #BBBBBB;
}
.header__right form input::placeholder {
  color: #BBBBBB;
}
.header__right select {
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  cursor: pointer;
  background: rgba(32, 50, 84, 0.2);
  border: 1px solid white;
  display: flex;
  align-items: center;
  padding: 0 10px;
  -moz-column-gap: 11px;
       column-gap: 11px;
  min-width: 84px;
  color: white;
  -webkit-appearance: none;
  background-image: url("../img/header-dropdown.svg");
  background-position: right 10px center;
  background-size: 15.39px 9.14px;
  background-repeat: no-repeat;
}
.header__right select:hover {
  opacity: 0.6;
}
@media screen and (max-width: 992px) {
  .header__right select {
    display: none;
  }
}
.header__form-alert-btn {
  display: flex;
  align-items: center;
  margin-left: 7.26px;
  cursor: pointer;
}
.header__form-alert {
  position: absolute;
  background: white;
  border: 1px solid #5F62CD;
  border-radius: 5px;
  padding: 9px 6px;
  font-weight: 500;
  font-size: 13px;
  max-width: 190px;
  right: -30%;
  top: 55px;
  display: none;
  z-index: 999;
}
.header__form-alert ul {
  padding-left: 20px;
}
.header__accent-btn {
  color: white;
  background: #FE9134;
  text-decoration: none;
  padding: 0 17px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1400px) {
  .header__accent-btn {
    display: none;
  }
}
.header__btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  background: rgba(32, 50, 84, 0.2);
  border: 1px solid white;
  display: flex;
  align-items: center;
  padding: 0 26px;
  -moz-column-gap: 11px;
       column-gap: 11px;
  color: white;
}
@media screen and (max-width: 992px) {
  .header__btn {
    border-radius: 100%;
    min-width: 50px;
    max-width: 50px;
    height: 50px;
    padding: 0;
    justify-content: center;
  }
  .header__btn span {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header__btn {
    min-width: 40px;
    max-width: 40px;
    height: 40px;
  }
}

.footer {
  background: #203254;
}
.footer__body {
  padding: 45px 0;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 992px) {
  .footer__body {
    align-items: center;
    padding: 30px 0;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
}
.footer__logo img {
  max-width: 100%;
}
@media screen and (max-width: 992px) {
  .footer__logo {
    max-width: 150px;
  }
}
@media screen and (max-width: 480px) {
  .footer__logo {
    max-width: 130px;
  }
}
.footer__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 65px;
  margin-bottom: 65px;
}
.footer__nav li {
  list-style-type: none;
}
.footer__nav a {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 21px;
  line-height: 26px;
}
@media (max-width: 1440px) {
  .footer__nav a {
  font-size: 17px;
  line-height: 22px;
}
}
@media screen and (max-width: 480px) {
  .footer__nav a {
    font-size: 15px;
    line-height: 20px;
  }
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 992px) {
  .footer__nav ul {
    gap: 5px;
  }
}
@media (max-width: 1250px) {
  .footer__nav {
    -moz-column-gap: 20px;
         column-gap: 20px;
    margin-bottom: 55px;
    margin-top: 55px;
  }
}
@media screen and (max-width: 992px) {
  .footer__nav {
    flex-direction: column;
    align-items: center;
    text-align: center;
    row-gap: 40px;
    margin-bottom: 35px;
    margin-top: 35px;
  }
}
@media screen and (max-width: 480px) {
  .footer__nav {
    row-gap: 28px;
    margin-top: 15px;
  }
}
.footer__nav-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__nav-contacts-offer {
  color: #FFFFFF;
  font-size: 21px;
  line-height: 26px;
}
@media (max-width: 1440px) {
  .footer__nav-contacts-offer {
  font-size: 17px;
    line-height: 22px;
}
}
@media screen and (max-width: 480px) {
  .footer__nav-contacts-offer {
    font-size: 15px;
    line-height: 20px;
  }
}
.footer__nav-contacts-icons {
  display: flex;
  gap: 7px;
}
.footer__nav-contacts-btn {
  border: solid 1px;
  border-color: #FFFFFF;
  padding: 10px 11px;
  text-align: center;
  text-transform: uppercase;
}
.footer__bottom {
  text-align: center;
}
.footer__bottom-copyrigt {
  color: #BBBBBB;
  font-size: 21px;
  line-height: 26px;
  text-decoration: none;
}
@media (max-width: 1440px) {
  .footer__bottom-copyrigt {
    font-size: 17px;
    line-height: 22px;
  }
}
@media screen and (max-width: 480px) {
  .footer__bottom-copyrigt {
    font-size: 15px;
    line-height: 20px;
  }
}

.home {
  padding-top: 41px;
}
.home__slider {
  position: relative;
  overflow: hidden;
}
.home__slider .swiper-button-prev {
  width: 47.74px;
  height: 47.74px;
  background-image: url("../img/home-arrow-prev.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px 30px;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border-radius: 15px;
  overflow: hidden;
  left: 16px;
}
.home__slider .swiper-button-prev::after {
  display: none;
}
.home__slider .swiper-button-next {
  width: 47.74px;
  height: 47.74px;
  background-image: url("../img/home-arrow-next.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px 30px;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border-radius: 15px;
  overflow: hidden;
  right: 16px;
}
.home__slider .swiper-button-next::after {
  display: none;
}
.home__slide {
  background: #6085DE;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  min-height: 464px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .home__slide {
    min-height: 400px;
  }
}
.home__slide::before {
  content: "";
  position: absolute;
  width: 358px;
  height: 358px;
  background: rgb(51, 51, 51);
  filter: blur(148px);
  z-index: 2;
  border-radius: 100%;
  left: -52px;
  top: -49px;
}
@media screen and (max-width: 1200px) {
  .home__slide::before {
    width: 300px;
    height: 300px;
    left: -100px;
  }
}
.home__slide::after {
  content: "";
  position: absolute;
  width: 358px;
  height: 358px;
  background: rgb(51, 51, 51);
  filter: blur(148px);
  z-index: 2;
  border-radius: 100%;
  top: 0;
  right: 132px;
}
@media screen and (max-width: 1440px) {
  .home__slide::after {
    right: 0;
  }
}
@media screen and (max-width: 1200px) {
  .home__slide::after {
    width: 300px;
    height: 300px;
    right: -100px;
  }
}
.home__slide-img {
  position: absolute;
  z-index: 1;
}
.home__slide-img img {
  max-width: 100%;
}
.home__slide-img:nth-child(1) {
  max-width: 830px;
  left: -192px;
  top: -23px;
}
@media screen and (max-width: 1440px) {
  .home__slide-img:nth-child(1) {
    max-width: 630px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 1200px) {
  .home__slide-img:nth-child(1) {
    max-width: 530px;
    left: -292px;
  }
}
@media screen and (max-width: 768px) {
  .home__slide-img:nth-child(1) {
    display: none;
  }
}
.home__slide-img:nth-child(2) {
  width: 1695px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.home__slide-img:nth-child(3) {
  max-width: 631px;
  right: -4.5px;
  bottom: -6px;
}
@media screen and (max-width: 1440px) {
  .home__slide-img:nth-child(3) {
    max-width: 431px;
  }
}
@media screen and (max-width: 1200px) {
  .home__slide-img:nth-child(3) {
    max-width: 331px;
    right: -100px;
  }
}
@media screen and (max-width: 768px) {
  .home__slide-img:nth-child(3) {
    display: none;
  }
}
.home__slide-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 54px;
}
@media screen and (max-width: 768px) {
  .home__slide-content {
    row-gap: 30px;
  }
}
.home__slide-offer {
  text-align: center;
  font-size: 53px;
  line-height: 100%;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .home__slide-offer {
    font-size: 35px;
  }
}
.home__slide-offer strong {
  font-weight: 600;
}
.home__slide-desc {
  font-weight: 500;
  font-size: 22px;
  line-height: 130%;
  color: #F4F4F4;
}
@media screen and (max-width: 768px) {
  .home__slide-desc {
    font-size: 20px;
  }
}

.home2__slide {
  background-color: #75ACEF;
  position: relative;
  border-radius: 30px;
  min-height: 464px;
  overflow: hidden;
  padding: 74px 40px;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 992px) {
  .home2__slide {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .home2__slide {
    min-height: 400px;
  }
}
.home2__slide::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/home2-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.8;
  z-index: 0;
}
.home2__slide::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.22);
  z-index: 1;
}
.home2__slide-img {
  position: absolute;
  z-index: 2;
}
.home2__slide-img img {
  max-width: 100%;
}
@media screen and (max-width: 992px) {
  .home2__slide-img {
    display: none;
  }
}
.home2__slide-img:nth-child(1) {
  max-width: 954px;
  top: -281px;
  left: -77px;
}
@media (max-width: 1575px) {
  .home2__slide-img:nth-child(1) {
    left: -277px;
  }
}
@media screen and (max-width: 1440px) {
  .home2__slide-img:nth-child(1) {
    left: -300px;
    max-width: 900px;
    top: -251px;
  }
}
@media screen and (max-width: 1200px) {
  .home2__slide-img:nth-child(1) {
    max-width: 700px;
    top: -100px;
    left: -450px;
  }
}
.home2__slide-img:nth-child(2) {
  max-width: 595px;
  z-index: 3;
  bottom: -64px;
  left: 578px;
}
@media (max-width: 1575px) {
  .home2__slide-img:nth-child(2) {
    left: 300px;
  }
}
@media screen and (max-width: 1440px) {
  .home2__slide-img:nth-child(2) {
    max-width: 525px;
    bottom: -44px;
    left: 220px;
  }
}
@media screen and (max-width: 1200px) {
  .home2__slide-img:nth-child(2) {
    max-width: 450px;
    left: 10px;
    bottom: -74px;
  }
}
.home2__slide-content {
  position: relative;
  z-index: 5;
  color: white;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
}
@media screen and (max-width: 992px) {
  .home2__slide-content {
    margin-left: 0;
  }
}
.home2__slide-offer {
  font-weight: 600;
  font-size: 53px;
  line-height: 100%;
}
@media screen and (max-width: 992px) {
  .home2__slide-offer {
    text-align: left;
    font-size: 33px;
  }
}
.home2__slide-desc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 9px;
}
.home2__slide-desc ul li {
  font-weight: 500;
  font-size: 27px;
  line-height: 100%;
  position: relative;
}
@media screen and (max-width: 992px) {
  .home2__slide-desc ul li {
    font-size: 22px;
  }
}
.home2__slide-desc ul li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -24px;
  width: 17px;
  height: 16px;
  background-image: url("../img/home-checked.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.home3__slide {
  position: relative;
  border-radius: 30px;
  min-height: 464px;
  overflow: hidden;
  background-color: #6085DE;
  background-image: url("../img/home3-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 94px;
}
@media (max-width: 1575px) {
  .home3__slide {
    background-size: cover;
  }
}
@media screen and (max-width: 992px) {
  .home3__slide {
    padding: 74px 40px;
  }
}
@media screen and (max-width: 768px) {
  .home3__slide {
    min-height: 400px;
  }
}
.home3__slide-img {
  position: absolute;
  z-index: 0;
  max-width: 800px;
  top: -415px;
}
@media screen and (max-width: 1200px) {
  .home3__slide-img {
    max-width: 700px;
  }
}
@media screen and (max-width: 992px) {
  .home3__slide-img {
    display: none;
  }
}
.home3__slide-img img {
  max-width: 100%;
}
.home3__slide-img:nth-child(1) {
  left: 0;
  transform: scale(-1, 1);
}
@media (max-width: 1575px) {
  .home3__slide-img:nth-child(1) {
    left: -250px;
  }
}
@media screen and (max-width: 1200px) {
  .home3__slide-img:nth-child(1) {
    left: -300px;
  }
}
.home3__slide-img:nth-child(2) {
  right: 0;
}
@media (max-width: 1575px) {
  .home3__slide-img:nth-child(2) {
    right: -250px;
  }
}
@media screen and (max-width: 1200px) {
  .home3__slide-img:nth-child(2) {
    right: -300px;
  }
}
.home3__slide-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  row-gap: 20px;
  max-width: 814px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .home3__slide-content {
    max-width: 700px;
  }
}
.home3__slide-offer {
  font-weight: 900;
  font-size: 60px;
  line-height: 100%;
}
@media screen and (max-width: 992px) {
  .home3__slide-offer {
    font-size: 40px;
  }
}
.home3__slide-desc {
  width: 100%;
}
.home3__slide-desc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 9px;
}
.home3__slide-desc ul li {
  font-size: 31px;
  line-height: 100%;
}
@media screen and (max-width: 992px) {
  .home3__slide-desc ul li {
    font-size: 21px;
  }
}
.home3__slide-desc ul li:nth-child(2n) {
  text-align: right;
}
@media screen and (max-width: 992px) {
  .home3__slide-desc ul li:nth-child(2n) {
    text-align: left;
  }
}

.home4__slide {
  position: relative;
  border-radius: 30px;
  min-height: 464px;
  overflow: hidden;
  background-color: #6085DE;
  padding-top: 66px;
}
@media screen and (max-width: 992px) {
  .home4__slide {
    padding: 74px 40px;
  }
}
@media screen and (max-width: 768px) {
  .home4__slide {
    min-height: 400px;
  }
}
.home4__slide::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/home4-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.65;
  z-index: 0;
}
.home4__slide-img {
  position: absolute;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  .home4__slide-img {
    display: none;
  }
}
.home4__slide-img img {
  max-width: 100%;
  width: 100%;
}
.home4__slide-img:nth-child(1) {
  max-width: 624px;
  top: -101px;
  left: -24px;
}
@media (max-width: 1575px) {
  .home4__slide-img:nth-child(1) {
    left: -184px;
  }
}
@media screen and (max-width: 1200px) {
  .home4__slide-img:nth-child(1) {
    max-width: 404px;
    top: auto;
    bottom: -200px;
  }
}
.home4__slide-img:nth-child(2) {
  max-width: 600px;
  right: 16px;
  top: -68px;
}
@media (max-width: 1575px) {
  .home4__slide-img:nth-child(2) {
    right: -176px;
  }
}
@media screen and (max-width: 1200px) {
  .home4__slide-img:nth-child(2) {
    max-width: 400px;
    top: auto;
    bottom: -80px;
  }
}
.home4__slide-content {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 33px;
  position: relative;
  z-index: 5;
}
.home4__slide-offer {
  font-weight: 800;
  font-size: 48px;
  line-height: 100%;
  text-decoration: underline;
}
@media screen and (max-width: 992px) {
  .home4__slide-offer {
    font-size: 28px;
  }
}
.home4__slide-desc ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 23px;
  list-style: none;
}
.home4__slide-desc ul li {
  font-weight: 500;
  font-size: 33px;
  line-height: 100%;
}
@media screen and (max-width: 1200px) {
  .home4__slide-desc ul li {
    font-size: 23px;
  }
}

.main {
  padding: 100px 0 80px;
}
@media screen and (max-width: 768px) {
  .main {
    padding: 70px 0 50px;
  }
}
.main__body {
  display: flex;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
@media screen and (max-width: 1200px) {
  .main__body {
    flex-direction: column;
    row-gap: 40px;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.main__sidebar {
  min-width: 275px;
  max-width: 275px;
}
@media screen and (max-width: 1200px) {
  .main__sidebar {
    max-width: 100%;
  }
}
.main__sidebar-items {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.main__sidebar-offer {
  font-weight: 700;
  font-size: 25px;
  line-height: 100%;
  margin-bottom: 20px;
}
.main__sidebar-els {
  display: flex;
  flex-direction: column;
  row-gap: 9px;
}
.main__sidebar-els label {
  min-height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.main__sidebar-els label input {
  display: none;
}
.main__sidebar-els label span {
  padding-left: 47px;
  position: relative;
  font-size: 18px;
  line-height: 100%;
}
.main__sidebar-els label span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 1px solid black;
}
.main__sidebar-els label input:checked + span::before {
  background-color: #6085DE;
  border-color: #6085DE;
  background-image: url("../img/yes.svg");
  background-repeat: no-repeat;
  background-size: 23.5px;
  background-position: center;
}
.main__sidebar-els label input[type=radio] + span::before {
  border-radius: 100%;
}
.main__sidebar-els label input[type=radio]:checked + span::before {
  background-image: none;
}
.main__sidebar-els label input[type=radio]:checked + span::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  width: 15.5px;
  height: 15.5px;
  border-radius: 100%;
  background: white;
}
.main__sidebar-offer--clickable {
  cursor: pointer;
  position: relative;
  margin-bottom: 0;
}
.main__sidebar-offer--clickable::after {
  content: "";
  background-image: url("../img/aside-drop.svg");
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 23.6px;
  height: 12.26px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s ease;
}
.main__sidebar-offer--clickable.active::after {
  transform: translateY(-50%) rotate(180deg);
}
.main__sidebar-item-content {
  display: none;
  padding-top: 20px;
}
.main__sidebar-item-content input[type=text] {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 13px 12px;
  border: 1px solid black;
  font-size: 22px;
  line-height: 100%;
}
.main__sidebar-item-content input[type=text]::-moz-placeholder {
  color: #BBBBBB;
}
.main__sidebar-item-content input[type=text]::placeholder {
  color: #BBBBBB;
}
.main__sidebar-inputs {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.main__sidebar-inputs input {
  width: 100%;
  padding: 9px 7px;
  border: 1px solid black;
  font-size: 22px;
  line-height: 100%;
}
.main__sidebar-inputs input::-moz-placeholder {
  color: #BBBBBB;
}
.main__sidebar-inputs input::placeholder {
  color: #BBBBBB;
}
.main__sidebar-range-slider {
  margin-bottom: 8px;
}
.main__sidebar-range-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  line-height: 100%;
  color: #333333;
}
.main__sidebar-btn {
  margin-top: 31px;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}
.main__sidebar-btn a,.main__sidebar-btn button {
  padding: 14.5px 62px;
  color: white;
  background: #203254;
  text-decoration: none;
  cursor: pointer;
}
.main__content {
  flex-grow: 1;
}
.main__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}
@media screen and (max-width: 768px) {
  .main__items {
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.main__item {
  grid-column: 4 span;
  display: flex;
  flex-direction: column;
  border: solid 1px #5F62CD;
  padding: 25px 17px 25px 18px;
}
@media screen and (max-width: 1440px) {
  .main__item {
    padding: 20px 12px;
  }
}
@media screen and (max-width: 1200px) {
  .main__item {
    grid-column: 6 span;
  }
}
@media screen and (max-width: 768px) {
  .main__item {
    grid-column: 12 span;
  }
}
.main__item-img {
  height: 263px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1440px) {
  .main__item-img {
    height: 200px;
  }
}
.main__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main__item-offer {
  border-bottom: solid 1px;
  border-color: 5F62CD;
  font-size: 25px;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 14px;
}
@media screen and (max-width: 1440px) {
  .main__item-offer {
    font-size: 22px;
  }
}
.main__item-els {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 24px;
}
.main__item-el {
  display: flex;
  justify-content: space-between;
}
.main__item-category {
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
}
@media screen and (max-width: 1440px) {
  .main__item-category {
    font-size: 15px;
  }
}
.main__item-type {
  font-weight: 700;
  font-size: 18px;
  text-align: right;
}
@media screen and (max-width: 1440px) {
  .main__item-type {
    font-size: 16px;
  }
}
.main__item-btn {
  align-items: center;
  text-align: center;
  margin-top: auto;
}
.main__item-btn a {
  color: white;
  background-color: #203254;
  padding: 14px 50px;
  text-decoration: none;
  display: inline-block;
}
.main__paging {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 31px;
  -moz-column-gap: 18px;
       column-gap: 18px;
  flex-wrap: wrap;
  row-gap: 18px;
}
.main__paging-arrow {
  padding: 10px 11px;
  border: 1px solid #203254;
}
.main__paging-item {
  text-decoration: none;
  font-weight: 300;
  font-size: 40px;
  line-height: 100%;
  color: #203254;
}
.main__paging-item.main__paging-item-active {
  opacity: 0.7;
  padding: 1px 10px;
  border-bottom: 2px solid #203254;
}


@media screen and (max-width: 480px) {
  .main__paging-item {
    font-size: 30px;
  }
}
.main__paging-more {
  font-weight: 300;
  font-size: 40px;
  line-height: 100%;
  color: #203254;
}
@media screen and (max-width: 480px) {
  .main__paging-more {
    font-size: 30px;
  }
}

.detail {
  padding: 80px 0;
}
.detail__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
  -moz-column-gap: 78px;
       column-gap: 78px;
}
@media screen and (max-width: 1200px) {
  .detail__top {
    flex-direction: column;
    row-gap: 40px;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.detail__top-left {
  width: 40%;
}
@media screen and (max-width: 1200px) {
  .detail__top-left {
    width: 100%;
  }
}
.detail__top-sliders {
  display: flex;
  flex-direction: column;
  row-gap: 17px;
  margin-bottom: 50px;
}
.detail__top-sliders .swiper-button-prev {
  width: 47.74px;
  height: 47.74px;
  background-image: url("../img/home-arrow-prev.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px 30px;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border-radius: 15px;
  overflow: hidden;
  left: 16px;
}
.detail__top-sliders .swiper-button-prev::after {
  display: none;
}
.detail__top-sliders .swiper-button-next {
  width: 47.74px;
  height: 47.74px;
  background-image: url("../img/home-arrow-next.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px 30px;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border-radius: 15px;
  overflow: hidden;
  right: 16px;
}
.detail__top-sliders .swiper-button-next::after {
  display: none;
}
.detail__top-slider {
  overflow: hidden;
  position: relative;
}
.detail__top-slide {
  height: 512px;
  display: block;
}
@media screen and (max-width: 768px) {
  .detail__top-slide {
    height: 400px;
  }
}
@media screen and (max-width: 480px) {
  .detail__top-slide {
    height: 350px;
  }
}
.detail__top-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.detail__top-thumbs {
  overflow: hidden;
}
.detail__top-thumb {
  cursor: pointer;
  height: 150px;
  display: block;
}
@media screen and (max-width: 480px) {
  .detail__top-thumb {
    height: 100px;
  }
}
.detail__top-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.detail__top-left-info h2 {
  font-weight: 700;
  font-size: 60px;
  line-height: 120%;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .detail__top-left-info h2 {
    font-size: 40px;
  }
}
.detail__top-left-info div {
  max-width: 608px;
  font-weight: 500;
  font-size: 34px;
  line-height: 120%;
}
@media screen and (max-width: 768px) {
  .detail__top-left-info div {
    font-size: 24px;
  }
}
.detail__top-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 60%;
}
@media screen and (max-width: 1200px) {
  .detail__top-right {
    width: 100%;
  }
}
.detail__top-right h1 {
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  margin-bottom: 10px;
  margin: 0;
}
.detail__top-right p {
  font-weight: 500;
  font-size: 26px;
  line-height: 50px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.detail__top-els {
  display: flex;
  flex-direction: column;
  row-gap: 28px;
}
.detail__top-els .main__item-category {
  font-weight: 500;
  font-size: 25px;
}
@media screen and (max-width: 992px) {
  .detail__top-els .main__item-category {
    font-size: 17px;
  }
}
.detail__top-els .main__item-type {
  font-size: 25px;
  font-weight: 700;
}
@media screen and (max-width: 992px) {
  .detail__top-els .main__item-type {
    font-size: 17px;
  }
}
.detail__top-els-wrap {
  padding-bottom: 28px;
  border-bottom: 1px solid black;
  display: flex;
  flex-direction: column;
  row-gap: 17px;
}
.detail__top-btn {
  padding: 18px;
  background-color: #203254;
  text-decoration: none;
  color: white;
  max-width: 330px;
  text-align: center;
  align-items: center;
  margin: 0 auto;
  font-size: 20px;
}
@media screen and (max-width: 992px) {
  .detail__top-btn {
    max-width: 300px;
    font-size: 16px;
    padding: 20px;
  }
}
.detail__bottom h2 {
  font-size: 35px;
  margin-bottom: 20px;
}
.detail__liked {
  overflow: hidden;
}
.detail__liked-arrows {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 80px;
       column-gap: 80px;
}
.detail__liked-arrow {
  padding: 10px 11px;
  border: 1.5px solid #203254;
  cursor: pointer;
  transition: 0.3s ease;
}
.detail__liked-arrow:hover {
  opacity: 0.6;
}
.detail__top-left-dop {
  border: 1.25px solid black;
  min-height: 327px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  row-gap: 23px;
}
.detail__top-left-dop h3 {
  font-weight: 700;
  font-size: 35px;
  line-height: 100%;
}
.detail__top-left-dop-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 19px;
}
.detail__top-left-dop-item {
  display: flex;
  align-items: center;
  -moz-column-gap: 25px;
       column-gap: 25px;
  font-weight: 500;
  font-size: 24px;
}
.detail__top-left-dop-item a {
  text-decoration: none;
  color: #6085DE;
}

.dopinfo {
  padding-bottom: 80px;
}
.dopinfo__offer {
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .dopinfo__offer {
    font-size: 35px;
  }
}
.dopinfo__sub {
  font-weight: 700;
  font-size: 34px;
  line-height: 100%;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .dopinfo__sub {
    font-size: 24px;
  }
}
.dopinfo__desc {
  font-weight: 500;
  font-size: 34px;
  line-height: 100%;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .dopinfo__desc {
    font-size: 24px;
  }
}
.dopinfo__user {
  max-width: 972px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 35px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  border: 1px solid #5F62CD;
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .dopinfo__user {
    flex-direction: column;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .dopinfo__user {
    padding: 25px;
  }
}
.dopinfo__user-img {
  height: 380px;
  min-width: 369px;
}
@media screen and (max-width: 992px) {
  .dopinfo__user-img {
    min-width: 0;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .dopinfo__user-img {
    height: 300px;
  }
}
.dopinfo__user-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dopinfo__user-name {
  font-weight: 500;
  font-size: 42px;
  line-height: 100%;
  margin-bottom: 40px;
}
.dopinfo__user-els {
  font-weight: 500;
  font-size: 35px;
  line-height: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 37px;
}
@media screen and (max-width: 768px) {
  .dopinfo__user-els {
    font-size: 22px;
  }
}
.dopinfo__user-el {
  display: flex;
  align-items: center;
  -moz-column-gap: 9px;
       column-gap: 9px;
}
.dopinfo__items {
  max-width: 1053px;
  border: 1px solid #5F62CD;
  padding: 30px 15px;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.dopinfo__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .dopinfo__item {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 20px;
  }
}
.dopinfo__item div {
  font-size: 34px;
  line-height: 100%;
}
@media screen and (max-width: 768px) {
  .dopinfo__item div {
    font-size: 24px;
  }
}
.dopinfo__item span {
  font-weight: 500;
  font-size: 28px;
  line-height: 100%;
}
@media screen and (max-width: 768px) {
  .dopinfo__item span {
    font-size: 18px;
  }
}
.dopinfo__item:first-child span {
  font-weight: 600;
}

.lk__body {
  min-height: 700px;
  display: flex;
  position: relative;
  min-height: 100vh;
}
.lk__sidebar {
  background: #e9f4fe;
  padding: 23px 20px 80px;
  max-width: 418px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
}
.lk__sidebar_minimize {
  max-width: 110px !important;
}
.lk__sidebar_minimize .lk__sidebar-user-ava {
  border-width: 1px;
  margin-bottom: 6px;
}
.lk__sidebar_minimize .lk__sidebar-user-name {
  font-size: 14px;
  margin-bottom: 10px;
}
.lk__sidebar_minimize .lk__sidebar-arrow {
  transform: rotate(180deg);
}
.lk__sidebar_minimize .lk__sidebar-info, .lk__sidebar_minimize .lk__sidebar-link {
  max-height: 0;
  margin: 0;
  opacity: 0;
}
.lk__sidebar_minimize .lk__sidebar-el-text {
  max-width: 0;
  opacity: 0;
}
.lk__sidebar_minimize .lk__sidebar-el {
  padding: 0 20px;
}
.lk__sidebar_minimize .lk__sidebar-items {
  margin: 0 -20px;
}
@media screen and (max-width: 480px) {
  .lk__sidebar_minimize {
    max-width: 90px !important;
  }
  .lk__sidebar_minimize .lk__sidebar-el {
    padding: 0 10px;
  }
  .lk__sidebar_minimize .lk__sidebar-items {
    margin: 0 -15px;
  }
}
@media screen and (max-width: 992px) {
  .lk__sidebar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    max-width: 100%;
    width: 100%;
    z-index: 100;
  }
}
@media screen and (max-width: 480px) {
  .lk__sidebar {
    padding: 15px 15px 80px;
  }
  .lk__sidebar .lk__sidebar-el {
    padding: 0 15px;
    font-size: 12px;
  }
}
.lk__sidebar-arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 10px;
}
.lk__sidebar-arrow {
  display: flex;
  align-items: center;
  transition: 0.3s ease;
  cursor: pointer;
}
.lk__sidebar-arrow:hover {
  opacity: 0.6;
}
.lk__sidebar-user {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lk__sidebar-user-ava-wrapper {
  max-width: 197px;
  width: 100%;
}
.lk__sidebar-user-ava {
  width: 100%;
  position: relative;
  padding-top: 100%;
  border-radius: 100%;
  overflow: hidden;
  border: 2px solid #203254;
  background: linear-gradient(159.47deg, #6063CD 13.17%, #77B1F1 90.42%);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.lk__sidebar-user-ava img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.lk__sidebar-user-name {
  font-weight: 500;
  text-align: center;
  font-size: 19px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.lk__sidebar-info {
  display: flex;
  flex-direction: column;
  row-gap: 13px;
  margin-bottom: 15px;
  overflow: hidden;
  max-height: 100%;
  transition: all 0.2s ease;
}
.lk__sidebar-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 100%;
}
.lk__sidebar-info-item div {
  font-weight: 600;
  flex-shrink: 0;
}

.lk__sidebar-info-item.lk__sidebar-info-item-info {
  margin-bottom: 5px;
}

.lk__sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-around;
  -moz-column-gap: 15px;
       column-gap: 15px;
  /*max-width: 295px;*/
  margin: 0 0 10px;
  overflow: hidden;
  max-height: 100%;
  transition: all 0.2s ease;
}
.lk__sidebar-link.lk__sidebar-link-end {
  margin: 0 0 28px;
}
.lk__sidebar-link input {
  padding: 10px 16px;
  font-weight: 500;
  line-height: 100%;
  color: #203254;
  border: 1px solid #203254;
  background: transparent;
  width: 100%;
}
.lk__sidebar-link button {
  display: flex;
  align-items: center;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: 0.3s ease;
}
.lk__sidebar-link button:hover {
  opacity: 0.6;
}
.lk__sidebar-items {
  display: flex;
  flex-direction: column;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: sticky;
  transition: margin 0.3s ease;
  top: 23px;
}
.lk__sidebar-items a {
  text-decoration: none;
}
@media screen and (max-width: 480px) {
  .lk__sidebar-items {
    top: 15px;
  }
}
.lk__sidebar-item {
  display: flex;
  flex-direction: column;
}
.lk__sidebar-item-top {
  cursor: pointer;
}
.lk__sidebar-item-top.active {
  background: rgba(32, 50, 84, 0.41);
}
.lk__sidebar-item-top.active .lk__sidebar-el-arrow {
  transform: rotate(180deg);
}
.lk__sidebar-els {
  display: flex;
  flex-direction: column;
  display: none;
}
.lk__sidebar-els.active {
  display: flex;
}
.lk__sidebar-els .lk__sidebar-el {
  background: #F5F5F5;
  border-color: #97A4B8;
}
.lk__sidebar-els .lk__sidebar-el.chosen {
  background: #CACBFF;
}
.lk__sidebar-el {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 25px;
  height: 50px;
  border-bottom: 1px solid rgba(32, 50, 84, 0.41);
  -moz-column-gap: 5px;
       column-gap: 5px;
  transition: padding 0.3s ease;
}
.lk__sidebar-el-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 24px;
  flex-shrink: 0;
}
.lk__sidebar-el-icon img {
  max-width: 100%;
}
.lk__sidebar-el-text {
  text-transform: uppercase;
  line-height: 100%;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  overflow: hidden;
  transition: all 0.3s ease;
}
.lk__sidebar-el-arrow {
  display: flex;
  align-items: center;
  max-width: 19px;
  min-width: 19px;
  transition: 0.3s ease;
}
.lk__sidebar-el-arrow img {
  max-width: 100%;
}
.lk__content {
  flex-grow: 1;
  width: 100%;
}
.lk__container {
  padding: 52px 75px 80px;
  max-width: 847px;
  box-sizing: content-box;
}
@media screen and (max-width: 992px) {
  .lk__container {
    padding: 32px 50px 60px 160px;
  }
}
@media screen and (max-width: 480px) {
  .lk__container {
    padding: 23px 10px 50px 100px;
  }
}
.lk__title {
  margin-top: 80px;
}
.lk__title:first-child {
  margin-top: 0;
}
.lk__subtitle {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .lk__subtitle {
    margin-top: 15px;
  }
}
@media screen and (max-width: 480px) {
  .lk__subtitle {
    margin-top: 10px;
  }
}
.lk__required-info {
  margin-top: 19px;
}
.lk__required-info span {
  color: #F92727;
}
.lk__edit-profile-form legend {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 30px;
  width: 100%;
}
.lk__edit-profile-form legend:after {
  content: "";
  display: block;
  height: 1px;
  background: rgba(32, 50, 84, 0.41);
  flex-grow: 1;
  margin-left: 12px;
}
@media screen and (max-width: 480px) {
  .lk__edit-profile-form legend {
    font-size: 20px;
  }
}
.lk__edit-profile-form fieldset {
  border: none;
  padding: 30px 0;
  margin-top: 30px;
}
@media screen and (max-width: 480px) {
  .lk__edit-profile-form fieldset {
    padding: 20px 0;
    margin-top: 20px;
  }
}
.lk__form-row, .lk__obj-form-row, .lk__form-withdrawal-funds-group, .lk__form-group, .lk__transfer-form-group, .lk__buy-coupon-form-row, .lk__leader-structure-search-row, .lk__registration-new-partner-row {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 12px;
       column-gap: 12px;
  margin-top: 25px;
  -moz-column-gap: 42px;
       column-gap: 42px;
}
.lk__form-row > label, .lk__obj-form-row > label, .lk__form-withdrawal-funds-group > label, .lk__form-group > label, .lk__transfer-form-group > label, .lk__buy-coupon-form-row > label, .lk__leader-structure-search-row > label, .lk__registration-new-partner-row > label {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  max-width: 306px;
  width: 100%;
}
.lk__form-row input, .lk__form-row select, .lk__form-row textarea, .lk__obj-form-row input, .lk__obj-form-row select, .lk__obj-form-row textarea, .lk__form-withdrawal-funds-group input, .lk__form-withdrawal-funds-group select, .lk__form-withdrawal-funds-group textarea, .lk__form-group input, .lk__transfer-form-group input, .lk__form-group select, .lk__transfer-form-group select, .lk__form-group textarea, .lk__transfer-form-group textarea, .lk__buy-coupon-form-row input, .lk__buy-coupon-form-row select, .lk__buy-coupon-form-row textarea, .lk__leader-structure-search-row input, .lk__leader-structure-search-row select, .lk__leader-structure-search-row textarea, .lk__registration-new-partner-row input, .lk__registration-new-partner-row select, .lk__registration-new-partner-row textarea {
  padding: 11px 24px;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid #203254;
  width: 100%;
}
.lk__form-row input:disabled, .lk__form-row select:disabled, .lk__form-row textarea:disabled, .lk__obj-form-row input:disabled, .lk__obj-form-row select:disabled, .lk__obj-form-row textarea:disabled, .lk__form-withdrawal-funds-group input:disabled, .lk__form-withdrawal-funds-group select:disabled, .lk__form-withdrawal-funds-group textarea:disabled, .lk__form-group input:disabled, .lk__transfer-form-group input:disabled, .lk__form-group select:disabled, .lk__transfer-form-group select:disabled, .lk__form-group textarea:disabled, .lk__transfer-form-group textarea:disabled, .lk__buy-coupon-form-row input:disabled, .lk__buy-coupon-form-row select:disabled, .lk__buy-coupon-form-row textarea:disabled, .lk__leader-structure-search-row input:disabled, .lk__leader-structure-search-row select:disabled, .lk__leader-structure-search-row textarea:disabled, .lk__registration-new-partner-row input:disabled, .lk__registration-new-partner-row select:disabled, .lk__registration-new-partner-row textarea:disabled {
  background: rgba(188, 221, 252, 0.32);
  cursor: not-allowed;
}
@media screen and (max-width: 768px) {
  .lk__form-row input, .lk__form-row select, .lk__form-row textarea, .lk__obj-form-row input, .lk__obj-form-row select, .lk__obj-form-row textarea, .lk__form-withdrawal-funds-group input, .lk__form-withdrawal-funds-group select, .lk__form-withdrawal-funds-group textarea, .lk__form-group input, .lk__form-group select, .lk__form-group textarea, .lk__transfer-form-group input, .lk__transfer-form-group select, .lk__transfer-form-group textarea, .lk__buy-coupon-form-row input, .lk__buy-coupon-form-row select, .lk__buy-coupon-form-row textarea, .lk__leader-structure-search-row input, .lk__leader-structure-search-row select, .lk__leader-structure-search-row textarea, .lk__registration-new-partner-row input, .lk__registration-new-partner-row select, .lk__registration-new-partner-row textarea {
    font-size: 14px;
  }
}
.lk__form-row input[type=file], .lk__obj-form-row input[type=file], .lk__form-withdrawal-funds-group input[type=file], .lk__form-group input[type=file], .lk__transfer-form-group input[type=file], .lk__buy-coupon-form-row input[type=file], .lk__leader-structure-search-row input[type=file], .lk__registration-new-partner-row input[type=file] {
  display: none;
}
.lk__form-row select, .lk__obj-form-row select, .lk__form-withdrawal-funds-group select, .lk__form-group select, .lk__transfer-form-group select, .lk__buy-coupon-form-row select, .lk__leader-structure-search-row select, .lk__registration-new-partner-row select {
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.lk__form-row select option[selected], .lk__obj-form-row select option[selected], .lk__form-withdrawal-funds-group select option[selected], .lk__form-group select option[selected], .lk__transfer-form-group select option[selected], .lk__buy-coupon-form-row select option[selected], .lk__leader-structure-search-row select option[selected], .lk__registration-new-partner-row select option[selected] {
/*  display: none;*/ /* TODO*/
}
.lk__form-row select::-ms-expand, .lk__obj-form-row select::-ms-expand, .lk__form-withdrawal-funds-group select::-ms-expand, .lk__form-group select::-ms-expand, .lk__transfer-form-group select::-ms-expand, .lk__buy-coupon-form-row select::-ms-expand, .lk__leader-structure-search-row select::-ms-expand, .lk__registration-new-partner-row select::-ms-expand {
  display: none;
}
.lk__form-row_required > label:after, .lk__obj-form-row_required > label:after, .lk__form-withdrawal-funds-group_required > label:after, .lk__form-group_required > label:after, .lk__transfer-form-group_required > label:after, .lk__buy-coupon-form-row_required > label:after, .lk__leader-structure-search-row_required > label:after, .lk__registration-new-partner-row_required > label:after {
  content: "*";
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 500;
  font-size: 14px;
  color: #FF0202;
}
.lk__form-row:first-of-type, .lk__obj-form-row:first-of-type, .lk__form-withdrawal-funds-group:first-of-type, .lk__form-group:first-of-type, .lk__transfer-form-group:first-of-type, .lk__buy-coupon-form-row:first-of-type, .lk__leader-structure-search-row:first-of-type, .lk__registration-new-partner-row:first-of-type {
  margin-top: 0;
}
@media screen and (max-width: 1400px) {
  .lk__form-row, .lk__obj-form-row, .lk__form-withdrawal-funds-group, .lk__form-group, .lk__transfer-form-group, .lk__buy-coupon-form-row, .lk__leader-structure-search-row, .lk__registration-new-partner-row {
    flex-direction: column;
    row-gap: 12px;
  }
  .lk__form-row > label, .lk__obj-form-row > label, .lk__form-withdrawal-funds-group > label, .lk__form-group > label, .lk__transfer-form-group > label, .lk__buy-coupon-form-row > label, .lk__leader-structure-search-row > label, .lk__registration-new-partner-row > label {
    max-width: unset;
    width: -moz-fit-content;
    width: fit-content;
  }
  .lk__form-row_required > label:after, .lk__obj-form-row_required > label:after, .lk__form-withdrawal-funds-group_required > label:after, .lk__form-group_required > label:after, .lk__transfer-form-group_required > label:after, .lk__buy-coupon-form-row_required > label:after, .lk__leader-structure-search-row_required > label:after, .lk__registration-new-partner-row_required > label:after {
    position: unset;
    margin-left: 5px;
  }
}
@media screen and (max-width: 768px) {
  .lk__form-row, .lk__obj-form-row, .lk__form-withdrawal-funds-group, .lk__form-group, .lk__transfer-form-group, .lk__buy-coupon-form-row, .lk__leader-structure-search-row, .lk__registration-new-partner-row {
    margin-top: 15px;
    row-gap: 8px;
  }
  .lk__form-row > label, .lk__obj-form-row > label, .lk__form-withdrawal-funds-group > label, .lk__form-group > label, .lk__transfer-form-group > label, .lk__buy-coupon-form-row > label, .lk__leader-structure-search-row > label, .lk__registration-new-partner-row > label {
    font-size: 14px;
  }
}
.lk__checkbox-label {
  cursor: pointer;
}
.lk__checkbox-label span {
  display: flex;
  align-items: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  min-height: 23.5px;
}
.lk__checkbox-label span::before {
  content: "";
  width: 32px;
  height: 32px;
  border: 1px solid black;
  flex-shrink: 0;
}
@media screen and (max-width: 480px) {
  .lk__checkbox-label span {
    font-size: 12px;
  }
}
.lk__checkbox-label input {
  display: none;
}
.lk__checkbox-label input:checked + span::before {
  background-color: #6085DE;
  border-color: #6085DE;
  background-image: url("../img/yes.svg");
  background-repeat: no-repeat;
  background-size: 23.5px;
  background-position: center;
}
.lk__radio-label {
  cursor: pointer;
}
.lk__radio-label span {
  display: flex;
  align-items: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  min-height: 23.5px;
  position: relative;
}
.lk__radio-label span::before {
  content: "";
  width: 32px;
  height: 32px;
  border: 1px solid black;
  border-radius: 100%;
}
@media screen and (max-width: 480px) {
  .lk__radio-label span {
    font-size: 14px;
  }
}
.lk__radio-label input {
  display: none;
}
.lk__radio-label input:checked + span::before {
  background-color: #6085DE;
  border-color: #6085DE;
  background-repeat: no-repeat;
  background-size: 23.5px;
  background-position: center;
}
.lk__radio-label input:checked + span::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  width: 15.5px;
  height: 15.5px;
  border-radius: 100%;
  background: white;
  z-index: 1;
}
.lk__select-wrapper {
  position: relative;
  width: 100%;
}
.lk__select-wrapper select:open + .lk__select-arrow {
  transform: translateY(-50%) rotate(180deg);
}
.lk__select-wrapper select option:checked {
  display: none;
}
.lk__select-wrapper_short {
  max-width: 181px;
}
@media screen and (max-width: 1200px) {
  .lk__select-wrapper_short {
    max-width: 513px;
  }
}
.lk__select-arrow {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 19px;
  height: 10px;
  background: url("../img/aside-drop.svg") center center/cover no-repeat;
  transition: transform 0.3s ease;
  pointer-events: none;
}
.lk__form-row-content, .lk__obj-form-row-content, .lk__form-withdrawal-funds-group-content, .lk__form-group-content, .lk__transfer-form-group-content, .lk__buy-coupon-form-row, .lk__registration-new-partner-row-content {
  flex-grow: 1;
  display: flex;
  gap: 30px;
}

.lk__form-row-content.lk__form-row-content-checkbox {
  flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .lk__form-row-content, .lk__obj-form-row-content, .lk__form-withdrawal-funds-group-content, .lk__form-group-content, .lk__transfer-form-group-content, .lk__buy-coupon-form-row, .lk__registration-new-partner-row-content {
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .lk__form-row-content {
    gap: 10px;
  }
}
.lk__avatar-preview-wrapper {
  max-width: 182px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  border: #203254 2px solid;
  background: linear-gradient(159.47deg, #6063CD 13.17%, #77B1F1 90.42%);
}
@media screen and (max-width: 1200px) {
  .lk__avatar-preview-wrapper {
    max-width: unset;
  }
}
.lk__avatar-preview {
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}
.lk__avatar-preview img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lk__form-row-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 13px;
}
.lk__avatar-btn {
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  padding: 12px;
  background: #FE9134;
  cursor: pointer;
}
.lk__avatar-btn:hover {
  opacity: 0.6;
}
.lk__avatar-btn::before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  background: url("../img/header-search.svg") center center/cover no-repeat;
}
@media screen and (max-width: 480px) {
  .lk__avatar-btn {
    font-size: 12px;
  }
}
.lk__form-error {
  display: none;
  margin-top: 2px;
  font-weight: 500;
  font-size: 14px;
  color: #F92727;
}
.lk__form-error.show {
  display: block;
}
.lk__notification_not-finished, .lk__notification_not-confirmed, .lk__notification_not-upload-docs {
  padding: 45px;
  min-height: 145px;
  /*max-width: 635px;*/
  margin-top: 15px;
}
@media screen and (max-width: 1400px) {
  .lk__notification_not-finished, .lk__notification_not-confirmed, .lk__notification_not-upload-docs {
    max-width: unset;
  }
}
@media screen and (max-width: 768px) {
  .lk__notification_not-finished, .lk__notification_not-confirmed, .lk__notification_not-upload-docs {
    flex-direction: column;
    padding: 26px;
  }
  .lk__notification_not-finished .notification__title, .lk__notification_not-finished .notification__text, .lk__notification_not-finished .notification__text-2, .lk__notification_not-confirmed .notification__title, .lk__notification_not-confirmed .notification__text, .lk__notification_not-confirmed .notification__text-2, .lk__notification_not-upload-docs .notification__title, .lk__notification_not-upload-docs .notification__text, .lk__notification_not-upload-docs .notification__text-2 {
    text-align: center;
  }
  .lk__notification_not-finished::before, .lk__notification_not-confirmed::before, .lk__notification_not-upload-docs::before {
    margin: 0;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .lk__notification_not-finished, .lk__notification_not-confirmed, .lk__notification_not-upload-docs {
    padding: 15px;
  }
  .lk__notification_not-finished .notification__title, .lk__notification_not-confirmed .notification__title, .lk__notification_not-upload-docs .notification__title {
    font-size: 16px;
  }
  .lk__notification_not-finished .notification__text, .lk__notification_not-finished .notification__text-2, .lk__notification_not-confirmed .notification__text, .lk__notification_not-confirmed .notification__text-2, .lk__notification_not-upload-docs .notification__text, .lk__notification_not-upload-docs .notification__text-2 {
    font-size: 12px;
  }
}
.lk__notification_avatar-hint {
  padding: 15px;
}
.lk__notification_avatar-hint .notification__text {
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .lk__notification_avatar-hint .notification__text {
    font-size: 12px;
  }
}
.lk__notification_update, .lk__notification_upload-docs-success, .lk__notification_card-not-exist, .lk__notification_card-not-found, .lk__notification_no-transactions {
  margin-top: 26px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  /*max-width: 531px;   TODO*/
}
.lk__notification_update::before, .lk__notification_upload-docs-success::before, .lk__notification_card-not-exist::before, .lk__notification_card-not-found::before, .lk__notification_no-transactions::before {
  margin-bottom: 0;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .lk__notification_update, .lk__notification_upload-docs-success, .lk__notification_card-not-exist, .lk__notification_card-not-found, .lk__notification_no-transactions {
    flex-direction: column;
    align-items: center;
    padding: 15px;
    margin-top: 15px;
  }
  .lk__notification_update .notification__text, .lk__notification_update .notification__text-3, .lk__notification_upload-docs-success .notification__text, .lk__notification_upload-docs-success .notification__text-3, .lk__notification_card-not-exist .notification__text, .lk__notification_card-not-exist .notification__text-3, .lk__notification_card-not-found .notification__text, .lk__notification_card-not-found .notification__text-3, .lk__notification_no-transactions .notification__text, .lk__notification_no-transactions .notification__text-3 {
    font-size: 12px;
    text-align: center;
  }
  .lk__notification_update::before, .lk__notification_upload-docs-success::before, .lk__notification_card-not-exist::before, .lk__notification_card-not-found::before, .lk__notification_no-transactions::before {
    margin: 0;
    margin-bottom: 10px;
  }
}
.lk__notification_send-docs-hint {
  /*max-width: 454px;*/
}
@media screen and (max-width: 768px) {
  .lk__notification_send-docs-hint {
    padding: 15px;
  }
  .lk__notification_send-docs-hint .notification__text {
    font-size: 12px;
  }
}
.lk__notification_send-docs-success, .lk__notification_new-bussiness-platform-alert, .lk__notification_must-buy-card {
  max-width: 531px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .lk__notification_send-docs-success, .lk__notification_new-bussiness-platform-alert, .lk__notification_must-buy-card {
    margin-top: 15px;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    gap: 10px;
  }
  .lk__notification_send-docs-success .notification__text, .lk__notification_new-bussiness-platform-alert .notification__text, .lk__notification_must-buy-card .notification__text {
    font-size: 12px;
  }
}
.lk__notification_must-buy-card {
  align-items: center;
}
.lk__notification_card-not-exist, .lk__notification_card-not-found {
  -moz-column-gap: 31px;
       column-gap: 31px;
  justify-content: flex-start;
  margin-top: 10px;
}
.lk__notification_card-not-found {
  max-width: unset;
}
.lk__notification_user-not-card {
  max-width: 665px;
  margin-top: 25px;
}
.lk__notification_max-funds-sum {
  max-width: 628px;
}
.lk__notification_max-funds-sum span {
  font-weight: 600;
}
.lk__notification_not-transfersm, .lk__notification_not-coupons {
  max-width: 424px;
  margin-top: 25px;
}
.lk__notification_print-user-id {
  max-width: 530px;
}
.lk__notification_u-can-buy-coupon {
  max-width: 454px;
}
.lk__notification_leader-programm, .lk__notification_leader-account {
  max-width: 424px;
  margin-top: 25px;
}
.lk__notification_leader-structure-search-no-result {
  max-width: 424px;
  margin-top: 15px;
}
.lk__notification_invite {
  max-width: 424px;
}
.lk__notification_invite-2 {
  max-width: 637px;
}
@media screen and (max-width: 768px) {
  .lk__notification_user-not-card, .lk__notification_must-buy-card, .lk__notification_max-funds-sum, .lk__notification_print-user-id, .lk__notification_not-transfers, .lk__notification_u-can-buy-coupon, .lk__notification_not-coupons, .lk__notification_leader-programm, .lk__notification_leader-account, .lk__notification_leader-structure-search-no-result, .lk__notification_invite, .lk__notification_invite-2 {
    margin-top: 15px;
    flex-direction: column;
    padding: 15px;
    gap: 10px;
  }
  .lk__notification_user-not-card .notification__text, .lk__notification_must-buy-card .notification__text, .lk__notification_max-funds-sum .notification__text, .lk__notification_print-user-id .notification__text, .lk__notification_not-transfers .notification__text, .lk__notification_u-can-buy-coupon .notification__text, .lk__notification_not-coupons .notification__text, .lk__notification_leader-programm .notification__text, .lk__notification_leader-account .notification__text, .lk__notification_leader-structure-search-no-result .notification__text, .lk__notification_invite .notification__text, .lk__notification_invite-2 .notification__text {
    font-size: 12px;
  }
  .lk__notification_user-not-card .notification__text-2, .lk__notification_must-buy-card .notification__text-2, .lk__notification_max-funds-sum .notification__text-2, .lk__notification_print-user-id .notification__text-2, .lk__notification_not-transfers .notification__text-2, .lk__notification_u-can-buy-coupon .notification__text-2, .lk__notification_not-coupons .notification__text-2, .lk__notification_leader-programm .notification__text-2, .lk__notification_leader-account .notification__text-2, .lk__notification_leader-structure-search-no-result .notification__text-2, .lk__notification_invite .notification__text-2, .lk__notification_invite-2 .notification__text-2 {
    font-size: 12px;
  }
  .lk__notification_user-not-card .notification__row, .lk__notification_must-buy-card .notification__row, .lk__notification_max-funds-sum .notification__row, .lk__notification_print-user-id .notification__row, .lk__notification_not-transfers .notification__row, .lk__notification_u-can-buy-coupon .notification__row, .lk__notification_not-coupons .notification__row, .lk__notification_leader-programm .notification__row, .lk__notification_leader-account .notification__row, .lk__notification_leader-structure-search-no-result .notification__row, .lk__notification_invite .notification__row, .lk__notification_invite-2 .notification__row {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .lk__notification_max-funds-sum, .lk__notification_print-user-id, .lk__notification_u-can-buy-coupon {
    margin-top: 0;
  }
}
.lk__tabs {
  margin-top: 32px;
}
@media screen and (max-width: 480px) {
  .lk__tabs {
    margin-top: 20px;
  }
}
.lk__upload-docs-form {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
.lk__upload-docs-form input[type=file] {
  display: none;
}
.lk__upload-docs-form input[type=text] {
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text);
  padding: 21px 15px;
  border: #77B1F1 1px solid;
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .lk__upload-docs-form input[type=text] {
    font-size: 14px;
    width: 100%;
  }
}
.lk__upload-docs-row {
  margin-top: 5px;
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  max-width: 518px;
}
@media screen and (max-width: 768px) {
  .lk__upload-docs-row {
    flex-direction: column;
    gap: 10px;
  }
}
.lk__upload-docs-choose-btn {
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  font-size: 14px;
  background-color: #77B1F1;
  color: #fff;
  padding: 18px 12px;
  font-weight: 600;
  font-size: 19px;
}
.lk__upload-docs-choose-btn:hover {
  opacity: 0.6;
}
.lk__upload-docs-choose-btn::after {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  background: url("../img/header-search.svg") center center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .lk__upload-docs-choose-btn {
    font-size: 14px;
    padding: 12px;
    width: 100%;
  }
}
.lk__upload-docs-btn {
  max-width: 518px;
  width: 100%;
}
.lk__upload-docs-btn:disabled {
  display: none;
}
.lk__card-form {
  margin-top: 20px;
}
.lk__card-form label {
  font-weight: 500;
  font-size: 17px;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  flex-grow: 1;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .lk__card-form label {
    max-width: unset;
    font-size: 14px;
  }
}
.lk__card-form input {
  font-size: 17px;
  padding: 21px 15px;
  border: #000 1px solid;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .lk__card-form input {
    font-size: 14px;
  }
}
.lk__card-form-row {
  display: flex;
  align-items: flex-end;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media screen and (max-width: 768px) {
  .lk__card-form-row {
    flex-direction: column;
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .lk__card-form-btn, .lk__card-show-btn {
    max-width: unset;
  }
}
@media screen and (max-width: 768px) {
  .lk__card-form-btn, .lk__card-show-btn {
    font-size: 14px;
    padding: 12px;
    width: 100%;
  }
}
.lk__card-show-btn {
  margin-top: 20px;
}
.lk__obj-back-btn {
  margin-top: 20px;
}
.lk__obj-form {
  margin-top: 63px;
  display: flex;
  flex-direction: column;
  row-gap: 35px;
}
.lk__obj-form fieldset {
  border: none;
  padding: 0;
}
.lk__obj-form legend {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
.lk__obj-form legend {
    font-size: 17px;
  }
}
@media screen and (max-width: 480px) {
  .lk__obj-form legend {
    font-size: 15px;
  }
}
.lk__obj-form-row, .lk__form-withdrawal-funds-group, .lk__form-group, .lk__transfer-form-group, .lk__buy-coupon-form-row, .lk__leader-structure-search-row, .lk__registration-new-partner-row {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  max-width: 513px;
}
.lk__obj-form-row > label, .lk__form-withdrawal-funds-group > label, .lk__form-group > label, .lk__transfer-form-group > label, .lk__buy-coupon-form-row > label, .lk__leader-structure-search-row > label, .lk__registration-new-partner-row > label {
  max-width: unset;
}
.lk__obj-form-row_required > label, .lk__form-withdrawal-funds-group_required > label, .lk__form-group_required > label, .lk__transfer-form-group_required > label, .lk__buy-coupon-form-row_required > label, .lk__leader-structure-search-row_required > label, .lk__registration-new-partner-row_required > label {
  max-width: unset;
}
.lk__obj-form-row_required > label:after, .lk__form-withdrawal-funds-group_required > label:after, .lk__form-group_required > label:after, .lk__transfer-form-group_required > label:after, .lk__buy-coupon-form-row_required > label:after, .lk__leader-structure-search-row_required > label:after, .lk__registration-new-partner-row_required > label:after {
  position: unset;
  margin-left: 5px;
}
.lk__obj-form-row textarea, .lk__obj-form-row input, .lk__obj-form-row select, .lk__form-withdrawal-funds-group textarea, .lk__form-withdrawal-funds-group input, .lk__form-withdrawal-funds-group select, .lk__form-group, .lk__transfer-form-group textarea, .lk__form-group textarea, .lk__form-group input, .lk__transfer-form-group input, .lk__form-group select, .lk__transfer-form-group select, .lk__buy-coupon-form-row textarea, .lk__buy-coupon-form-row input, .lk__buy-coupon-form-row select, .lk__leader-structure-search-row textarea, .lk__leader-structure-search-row input, .lk__leader-structure-search-row select, .lk__registration-new-partner-row textarea, .lk__registration-new-partner-row input, .lk__registration-new-partner-row select {
  padding: 21px 15px;
}
.lk__obj-form-row textarea, .lk__form-withdrawal-funds-group textarea, .lk__form-group textarea, .lk__transfer-form-group textarea, .lk__buy-coupon-form-row textarea, .lk__leader-structure-search-row textarea, .lk__registration-new-partner-row textarea {
  resize: none;
  height: 161px;
}
.lk__obj-form-row_large, .lk__form-withdrawal-funds-group_large, .lk__form-group_large, .lk__transfer-form-group_large, .lk__buy-coupon-form-row_large, .lk__leader-structure-search-row_large, .lk__registration-new-partner-row_large {
  max-width: unset;
}
.lk__obj-form-row_large input, .lk__form-withdrawal-funds-group_large input, .lk__form-group_large input, .lk__transfer-form-group_large input, .lk__buy-coupon-form-row_large input, .lk__leader-structure-search-row_large input, .lk__registration-new-partner-row_large input {
  max-width: 513px;
  flex-shrink: 0;
}
.lk__obj-form-row-content, .lk__form-withdrawal-funds-group-content, .lk__form-group-content, .lk__transfer-form-group-content {
  -moz-column-gap: 21px;
       column-gap: 21px;
}
.lk__obj-form-photo-picker-wrapper {
  width: 211px;
}
.lk__obj-form-photo-picker, .lk__car-form-photo-picker {
  display: block;
  text-align: center;
  width: 100%;
  padding-top: 76%;
  background-color: #D9D9D9;
  position: relative;
}
.lk__obj-form-photo-picker img, .lk__obj-form-photo-picker p  {
  position: absolute;
  top: 0;
  left: 0;
}
.lk__obj-form-photo-picker p, .lk__car-form-photo-picker p {
  top: 50%;
  transform: translateY(-50%);
  padding: 0 32px;
  font-weight: 500;
  font-size: 17px;
}
.lk__obj-form-photo-picker img, .lk__car-form-photo-picker img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lk__obj-form-btn, .lk__car-form-btn {
  margin-top: 20px;
  max-width: 513px;
}
.lk__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 6px;
  border-bottom: 1px solid #203254;
}
.lk__header_center {
  align-items: center;
}
.lk__header_without-line {
  border-bottom: none;
}
@media screen and (max-width: 1200px) {
  .lk__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.lk__header-btn {
  min-width: 128px;
  width: -moz-fit-content;
  width: fit-content;
  height: 54px;
}
.lk__user-cards {
  margin-top: 30px;
}
.lk__user-cards_center {
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  .lk__user-cards {
    margin-top: 15px;
  }
}
.lk__user-cards-balance {
  margin-bottom: 6px;
}
.lk__user-cards-balance-text {
  font-weight: 700;
  font-size: 14px;
}
.lk__user-cards-balance-value {
  font-weight: 500;
  font-size: 14px;
}
.lk__table {
  margin-top: 24px;
}
.lk__table tbody tr { border-bottom: 1px solid lightgrey; }
.lk__table tbody tr td { min-height: 40px; vertical-align: top; padding: 10px;  }




@media screen and (max-width: 768px) {
  .lk__table {
    margin-top: 15px;
  }
}
.lk__new-bussiness-platform-subtitle {
  max-width: 665px;
}
.lk__new-bussiness-platform-items {
  margin-top: 53px;
}
.lk__new-bussiness-platform-item {
  margin-top: 61px;
}
.lk__new-bussiness-platform-item .user-cards {
  width: 350px;
  height: 199px;
  overflow: hidden;
}
.lk__new-bussiness-platform-item .user-cards__content {
  padding-top: 18px;
  justify-content: unset;
}
.lk__new-bussiness-platform-item .user-cards__item-wrapper {
  width: 70px;
}
.lk__new-bussiness-platform-item .user-cards__row {
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.lk__new-bussiness-platform-item .user-cards__row:last-child .user-cards__item-wrapper:first-child::before {
  content: none;
}
.lk__new-bussiness-platform-item .user-cards__row:first-child .user-cards__item-wrapper:first-child::before {
  content: "";
  position: absolute;
  top: -70%;
  left: 50%;
  transform: translateY(100%) translateX(-50%) scaleY(-1);
  display: block;
  width: 35px;
  height: 30px;
  background: url("../img/user-cards-decorate.svg") center center/contain no-repeat;
}
.lk__new-bussiness-platform-item .user-cards__item-title {
  font-size: 7px;
}
.lk__new-bussiness-platform-item:first-child {
  margin-top: 0;
}
@media screen and (max-width: 1400px) {
  .lk__new-bussiness-platform-item .user-cards {
    width: unset;
    max-width: unset;
  }
  .lk__new-bussiness-platform-item .lk__new-bussiness-platform-item-left {
    width: 100%;
  }
  .lk__new-bussiness-platform-item .lk__new-bussiness-platform-item-row {
    flex-direction: column;
  }
  .lk__new-bussiness-platform-item .lk__new-bussiness-platform-card {
    max-width: unset;
  }
}
@media screen and (max-width: 1200px) {
  .lk__new-bussiness-platform-item {
    margin-top: 30px;
  }
  .lk__new-bussiness-platform-item .user-cards {
    height: unset;
  }
}
.lk__new-bussiness-platform-item-row {
  margin-top: 10px;
  display: flex;
  gap: 20px;
}
.lk__new-bussiness-platform-item-left {
  width: 270px;
  background: #203254;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.lk__new-bussiness-platform-item-logo img {
  display: block;
  width: 100%;
}
.lk__new-bussiness-platform-item-subtitle {
  font-weight: 500;
  font-size: 14px;
  color: #fff;
}
.lk__new-bussiness-platform-item-title {
  font-weight: 500;
  font-size: 26px;
  color: #fff;
}
.lk__new-bussiness-platform-item-btn {
  max-width: unset;
  margin-top: 10px;
}
.lk__list-cards {
  margin-top: 27px;
  list-style: none;
}
.lk__list-cards li {
  margin-top: 20px;
}
@media screen and (max-width: 1200px) {
  .lk__list-cards li {
    padding-bottom: 10px;
  }
  .lk__list-cards li:first-child {
    margin-top: 0;
  }
}
.lk__list-cards-row {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.lk__list-cards-row span {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.lk__list-cards-row span:first-child::before {
  content: "";
  display: block;
  width: 24px;
  height: 18px;
  background: url("../img/lk-sidebar-2.svg") center center/contain no-repeat;
}
.lk__list-cards-row span:nth-child(2)::before {
  content: "";
  display: block;
  width: 24px;
  height: 15px;
  background: url("../img/arrow-right.svg") center center/contain no-repeat;
}
@media screen and (max-width: 1200px) {
  .lk__list-cards-row {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
    margin-top: 10px;
    border-bottom: #d4d4d4 1px solid;
    padding-bottom: 10px;
  }
  .lk__list-cards-row span {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
  }
  .lk__list-cards-row span:nth-child(2)::before {
    transform: rotate(90deg);
  }
  .lk__list-cards-row:first-child {
    margin-top: 0;
  }
}
.lk__text {
  font-weight: 500;
  font-size: 16px;
}
.lk__text a {
  color: #FE9134;
  text-decoration: none;
}

.lk__new-bussiness-platform-text {
  margin-top: 26px;
  max-width: 533px;
}
.lk__new-bussiness-platform-steps {
  margin-top: 35px;
}
.lk__new-bussiness-platform-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 58px;
       column-gap: 58px;
  row-gap: 42px;
  flex-wrap: wrap;
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  .lk__new-bussiness-platform-cards {
    row-gap: 20px;
  }
}
.lk__new-bussiness-platform-card {
  max-width: 191px;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 17px 20px;
  border: #203254 1px solid;
  flex-shrink: 0;
  gap: 8px;
}
@media screen and (max-width: 480px) {
  .lk__new-bussiness-platform-card {
    max-width: 100%;
    padding: 15px 27px;
  }
}
.lk__new-bussiness-platform-card-subtitle {
  font-weight: 500;
  font-size: 13px;
}
.lk__new-bussiness-platform-card-title {
  background-color: #2AA5A0;
  background-image: linear-gradient(65deg, #6063CD, #77B1F1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 23px;
}
.lk__new-bussiness-platform-card-price {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-weight: 500;
  font-size: 22px;
}
.lk__new-bussiness-platform-card-price::after {
  content: "";
  width: 29px;
  height: 25px;
  background: url("../img/new-bussiness-platform-card-decorate.svg") center center/contain no-repeat;
  margin-top: 8px;
}
.lk__new-bussiness-platform-card-income {
  font-weight: 700;
  font-size: 18px;
  background-color: #2AA5A0;
  background-image: linear-gradient(65deg, #6063CD, #77B1F1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lk__new-bussiness-platform-card-btn {
  margin-top: 10px;
}
.lk__new-bussiness-platform-back-btn {
  margin-top: 25px;
  max-width: 741px;
}
.lk__profile-data {
  margin-top: 25px;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;

}
.lk__profile-data_mt0 {
  margin-top: 0;
}
.lk__profile-data_leader-info .lk__profile-data-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lk__profile-data_leader-info .lk__profile-data-item-title {
  font-size: 17px;
}
.lk__profile-data_leader-info .lk__profile-data-item-value {
  font-weight: 700;
  font-size: 17px;
}
@media screen and (max-width: 768px) {
  .lk__profile-data {
    margin-top: 18px;
    row-gap: 4px;
  }
}
.lk__profile-data-title {
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .lk__profile-data-title {
    font-size: 15px;
  }
}
.lk__profile-data-list {
  list-style: none;
}
.lk__profile-data-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  border-bottom: 1px solid #e8e8e8;
}
@media screen and (max-width: 768px) {
  .lk__profile-data-item {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 2px;
  }
}
.lk__profile-data-item-title {
  font-weight: 500;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .lk__profile-data-item-title {
    font-size: 14px;
  }
}
.lk__profile-data-item-value {
  font-weight: 600;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .lk__profile-data-item-value {
    font-size: 14px;
  }
}
.lk__form-withdrawal-funds {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
.lk__form-withdrawal-funds fieldset {
  border: none;
  padding: 0;
}
.lk__form-withdrawal-funds legend {
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .lk__form-withdrawal-funds {
    margin-top: 15px;
    row-gap: 20px;
  }
  .lk__form-withdrawal-funds legend {
    margin-bottom: 15px;
  }
}
.lk__payment-info {
  margin-top: 7px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
@media screen and (max-width: 768px) {
  .lk__payment-info {
    row-gap: 10px;
  }
}
.lk__payment-info-commission, .lk__payment-info-total, .lk__payment-info-price, .lk__payment-info-row {
  font-weight: 500;
  font-size: 17px;
}
.lk__payment-info-commission span, .lk__payment-info-total span, .lk__payment-info-price span, .lk__payment-info-row span {
  font-weight: 600;
  color: var(--color-text);
}
.lk__payment-info-total {
  color: #5F62CD;
}
.lk__form-withdrawal-funds-btn {
  max-width: 100%;
}
.lk__form-withdrawal-funds-group {
  margin-top: 10px;
}
.lk__add-transfer-btn {
  margin-top: 25px;
  max-width: 242px;
}
.lk__transfer-form {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
@media screen and (max-width: 768px) {
  .lk__transfer-form {
    margin-top: 15px;
    row-gap: 10px;
  }
}
.lk__id-field-block {
  border: #203254 1px solid;
  padding: 25px 30px;
  max-width: 530px;
}
@media screen and (max-width: 768px) {
  .lk__id-field-block {
    padding: 15px 10px;
  }
}
.lk__id-field-block-row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.lk__id-field-block-row label {
  font-weight: 500;
  font-size: 17px;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  max-width: 288px;
}
.lk__id-field-block-row label input {
  font-weight: 500;
  font-size: 17px;
  padding: 21px 15px;
  border: #203254 1px solid;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .lk__id-field-block-row {
    flex-direction: column;
    row-gap: 10px;
  }
  .lk__id-field-block-row label {
    width: 100%;
    max-width: 100%;
  }
}
.lk__user-info-user-avatar {
  max-width: 60px;
}
@media screen and (max-width: 768px) {
  .lk__user-info-user-avatar {
    max-width: 40px;
  }
}
.lk__user-info, .lk__user-info-user-name {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .lk__user-info, .lk__user-info-user-name {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 4px;
  }
}
.lk__id-field-block-user-info {
  margin-top: 21px;
}
.lk__id-field-block-btn {
  max-width: 128px;
}
@media screen and (max-width: 768px) {
  .lk__id-field-block-btn {
    max-width: 100%;
  }
}
.lk__user-info-user-name-text, .lk__user-info-user-name-id {
  font-weight: 500;
  font-size: 17px;
}
.lk__user-info-user-name-text {
  font-weight: 700;
}
.lk__form-group {
  max-width: 100%;
  margin-top: 0;
}
.lk__transfer-form-group {
  max-width: 288px;
  margin-top: 0;
}
.lk__transfer-from-btn {
  max-width: 100%;
}
.lk__buy-coupon-form {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
@media screen and (max-width: 768px) {
  .lk__buy-coupon-form {
    margin-top: 15px;
    row-gap: 10px;
  }
}
.lk__buy-coupon-form-row {
  margin-top: 0;
}
.lk__buy-coupon-form-btn {
  max-width: 513px;
}
.lk__leader-account-info {
  margin-top: 25px;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}
.lk__leader-account-info li {
  font-weight: 500;
  font-size: 17px;
}
.lk__leader-account-info li:first-child {
  margin-bottom: 3px;
}
.lk__leader-account-info li span {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .lk__leader-account-info {
    margin-top: 15px;
    row-gap: 4px;
  }
  .lk__leader-account-info li {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .lk__leader-account-info-user {
    margin-bottom: 15px;
  }
}
.lk__leader-structure-search {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .lk__leader-structure-search {
    margin-top: 15px;
    margin-bottom: 30px;
    row-gap: 10px;
  }
}
.lk__leader-structure-search-row {
  max-width: 424px;
  margin-top: 0;
}
.lk__leader-structure-search-btn {
  max-width: 100%;
}
.lk__leader-structure-search-user {
  margin-top: 27px;
}
.lk__registration-new-partner-row {
  max-width: 513px;
  margin-top: 0;
}
.lk__registration-new-partner {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.lk__registration-new-partner-btn {
  max-width: 424px;
  margin-top: 15px;
}
.lk__invite-new-partners-form-row {
  display: flex;
  -moz-column-gap: 60px;
       column-gap: 60px;
  max-width: unset;
  margin-top: 0;
}
.lk__invite-new-partners-form-row label {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  font-weight: 500;
  font-size: 17px;
  width: 100%;
}
.lk__invite-new-partners-form-row label input, .lk__invite-new-partners-form-row label select {
  font-weight: 500;
  font-size: 17px;
  padding: 21px 15px;
  border: #000 1px solid;
  width: 100%;
}
.lk__invite-new-partners-form-row label select {
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.lk__invite-new-partners-form-row label select option[selected] {
  display: none;
}
.lk__invite-new-partners-form-row label select::-ms-expand {
  display: none;
}
@media screen and (max-width: 1400px) {
  .lk__invite-new-partners-form-row {
    flex-direction: column;
    row-gap: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #d4d4d4;
  }
  .lk__invite-new-partners-form-row label {
    font-size: 14px;
    width: 100%;
  }
  .lk__invite-new-partners-form-row label input, .lk__invite-new-partners-form-row label select {
    font-size: 14px;
  }
}
.lk__invite-new-partners-form {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.lk__invite-new-partners-tabs-wrapper {
  justify-content: unset;
}
.lk__invite-new-partners-tabs-wrapper .tab {
  border-color: #FE9134;
  color: #FE9134;
}
.lk__invite-new-partners-tabs-wrapper .tab.active {
  background-color: #FE9134;
  color: #fff;
}
.lk__invite-new-partners-tabs {
  margin-top: 25px;
}
.lk__see-invite-link {
  font-weight: 500;
  font-size: 16px;
  color: #FE9134;
  text-decoration: none;
  margin-top: 10px;
  margin-bottom: 10px;
  display: block;
}

.lk__see-invite-letter {
  width: 100%;
  height: 20vw;
  min-height: 200px;
  overflow: scroll;
}
.lk__see-invite-letter-btn {
  position: relative;
  top: 50px;
  float: right;
  margin-right: 30px;
  width: auto;
  padding-right: 10px;
  padding-left: 10px;
}


.lk-leader-levels__content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 70px -40px 0;
  --lk-leader-levels-height-offset: 38px;
  --lk-leader-levels-mt-offset: 2.5px;
  --lk-leader-levels-base-height: 254px;
  --lk-leader-levels-base-mt: 27px;
}
.lk-leader-levels__item {
  --lk-leader-levels-counter: 1;
  flex-shrink: 0;
  width: 70px;
  background: url("../img/leader-programm-level.svg") center center/100% 100% no-repeat;
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  height: calc(var(--lk-leader-levels-base-height) + var(--lk-leader-levels-height-offset) * var(--lk-leader-levels-counter));
  position: relative;
}
.lk-leader-levels__item span {
  font-size: 24px;
}
.lk-leader-levels__item:nth-child(1) {
  --lk-leader-levels-counter: 11;
}
.lk-leader-levels__item:nth-child(2) {
  --lk-leader-levels-counter: 10;
}
.lk-leader-levels__item:nth-child(3) {
  --lk-leader-levels-counter: 9;
}
.lk-leader-levels__item:nth-child(4) {
  --lk-leader-levels-counter: 8;
}
.lk-leader-levels__item:nth-child(5) {
  --lk-leader-levels-counter: 7;
}
.lk-leader-levels__item:nth-child(6) {
  --lk-leader-levels-counter: 6;
}
.lk-leader-levels__item:nth-child(7) {
  --lk-leader-levels-counter: 5;
}
.lk-leader-levels__item:nth-child(8) {
  --lk-leader-levels-counter: 4;
}
.lk-leader-levels__item:nth-child(9) {
  --lk-leader-levels-counter: 3;
}
.lk-leader-levels__item:nth-child(10) {
  --lk-leader-levels-counter: 2;
}
.lk-leader-levels__item:nth-child(11) {
  --lk-leader-levels-counter: 1;
}
.lk-leader-levels__item-title {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: calc(var(--lk-leader-levels-base-mt) + var(--lk-leader-levels-mt-offset) * var(--lk-leader-levels-counter));
}
.lk-leader-levels__avatar-overlay-wrapper {
  width: 86px;
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
}
.lk-leader-levels__avatar-overlay {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  padding-top: 115%;
  background-color: #203254;
  -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.lk-leader-levels__avatar-overlay-content {
  padding: 18%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: #fff;
  -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 3px;
}
.lk-leader-levels__avatar-overlay-content:before, .lk-leader-levels__avatar-overlay-content:after {
  content: "";
  display: block;
  width: 25px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.lk-leader-levels__avatar-overlay-content:before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.lk-leader-levels__avatar {
  flex-shrink: 0;
  z-index: 1;
  max-width: 60px;
}
@media screen and (max-width: 1400px) {
  .lk-leader-levels__item {
    width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .lk-leader-levels__item-title {
    writing-mode: vertical-lr;
    flex-direction: row;
    gap: 10px;
  }
  .lk-leader-levels__avatar-overlay-wrapper {
    width: 45px;
  }
  .lk-leader-levels__avatar-overlay-content {
    padding: 11%;
  }
  .lk-leader-levels__avatar-overlay-content:before, .lk-leader-levels__avatar-overlay-content:after {
    width: 15px;
  }
}
@media screen and (max-width: 1200px) {
  .lk-leader-levels__item {
    width: 50px;
  }
}
@media screen and (max-width: 992px) {
  .lk-leader-levels__content {
    margin: 50px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .lk-leader-levels__item {
    width: 20px;
  }
  .lk-leader-levels__item-title {
    font-size: 12px;
  }
  .lk-leader-levels__item-title span {
    font-size: 15px;
  }
  .lk-leader-levels__avatar-overlay-wrapper {
    width: 30px;
    top: 4px;
  }
  .lk-leader-levels__avatar-overlay-content {
    padding: 9%;
  }
  .lk-leader-levels__avatar-overlay-content:before, .lk-leader-levels__avatar-overlay-content:after {
    width: 10px;
  }
}
@media screen and (max-width: 480px) {
  .lk-leader-levels__content {
    --lk-leader-levels-base-height: 50px;
    --lk-leader-levels-base-mt: 15px;
  }
  .lk-leader-levels__item {
    width: 15px;
  }
  .lk-leader-levels__item-title {
    font-size: 10px;
  }
  .lk-leader-levels__item-title span {
    font-size: 12px;
  }
  .lk-leader-levels__avatar-overlay-wrapper {
    width: 20px;
  }
  .lk-leader-levels__avatar-overlay-content:before, .lk-leader-levels__avatar-overlay-content:after {
    width: 5px;
  }
}

.registr {
  padding: 80px 0;
}
.registr label {
  min-height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.registr label input {
  display: none;
}
.registr label span {
  padding-left: 47px;
  position: relative;
  font-size: 18px;
  line-height: 100%;
}
.registr label span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 1px solid black;
}
.registr label input:checked + span::before {
  background-color: #6085DE;
  border-color: #6085DE;
  background-image: url("../img/yes.svg");
  background-repeat: no-repeat;
  background-size: 23.5px;
  background-position: center;
}
.registr label input[type=radio] + span::before {
  border-radius: 100%;
}
.registr label input[type=radio]:checked + span::before {
  background-image: none;
}
.registr label input[type=radio]:checked + span::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  width: 15.5px;
  height: 15.5px;
  border-radius: 100%;
  background: white;
}
.registr__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.registr__offer {
  font-size: 40px;
  font-weight: 500;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #6063CD, #77B1F1);
}
.registr__who {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .registr__who {
    flex-direction: column;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 20px;
    margin-bottom: 30px;
    margin-top: 30px;
    width: 100%;
  }
}
.registr__who a {
  padding: 13px 34px;
  background-color: #FE9134;
  text-decoration: none;
  color: #FFF;
  min-width: 210px;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  pointer-events: all;
}
@media screen and (max-width: 768px) {
  .registr__who a {
    margin-bottom: 0;
    margin-top: 0;
    width: 100%;
  }
}
.registr__who a.active {
  background-color: #FFF;
  border: solid 1px #FE9134;
  color: #FE9134;
  pointer-events: none;
}
.registr__warn {
  padding: 21px 45px;
  border: dashed 1px #203254;
  background-color: #EAF4FE;
  max-width: 816px;
  margin-bottom: 50px;
}
.registr__info {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 31px;
  row-gap: 15px;
}
@media screen and (max-width: 768px) {
  .registr__info {
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.registr__info-item {
  grid-column: 6 span;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (max-width: 768px) {
  .registr__info-item {
    grid-column: 12 span;
  }
}
.registr__protect {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-top: 27px;
}
.registr__no {
  padding-top: 27px;
}
.registr__info-offer {
  font-size: 17px;
  font-weight: 500;
}
.registr__info-offer span {
  color: #F92727;
}
.registr__info-content input {
  width: 100%;
  padding: 20px 15px;
}
.registr__info-new {
  padding: 8px;
  background-color: #203254;
  max-width: 40px;
  max-height: 40px;
}
.registr__info-btn {
  padding: 11px 211px;
  background-color: #425D8F;
  color: white;
  text-decoration: none;
  margin-top: 25px;
  display: block;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}
.registr__info-btn:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .registr__info-btn {
    padding: 11px 0;
    width: 100%;
    text-align: center;
  }
}

.login {
  padding-top: 80px;
  padding-bottom: 70px;
  min-height: calc(100vh - 128px - 453px);
}
.login__notification {
  margin-top: 15px;
  max-width: 454px;
}
.login__error-notification {
  max-width: 635px;
  margin: 0 auto;
  margin-bottom: 25px;
}
.login__success-notification {
  max-width: 454px;
  margin: 0 auto;
  margin-top: 25px;
}
.login__body {
  max-width: 513px;
  margin: 0 auto;
}
.login__title {
  margin: 0 auto;
  font-size: 40px;
  font-weight: 500;
}
.login__subtitle {
  font-weight: 500;
  color: var(--color-text);
  font-size: 25px;
  margin-top: 30px;
}
.login__form {
  margin-top: 21px;
}
.login__input-field {
  margin-top: 15px;
}
.login__input-field:first-child {
  margin-top: 0;
}
.login__button {
  transition: 0.3s ease;
  cursor: pointer;
  width: 100%;
  margin-top: 15px;
  background-color: #425D8F;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  padding: 11px 0;
  border: none;
}
.login__button:hover {
  opacity: 0.6;
}
.login__links {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
.login__link {
  font-weight: 600;
  font-size: 17px;
  margin-top: 5px;
  color: #6085DE;
  text-decoration: none;
}
.login__link:first-child {
  color: #5F62CD;
  margin-top: 0;
}