@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic);
@font-face {
  font-family: "Gilroy-Bold";
  font-display: swap;
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy-Bold.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-Medium";
  font-display: swap;
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-SemiBold";
  font-display: swap;
  src: url("../fonts/Gilroy-SemiBold.woff2") format("woff2"), url("../fonts/Gilroy-SemiBold.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-Regular";
  font-display: swap;
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

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

html {
  font-size: 16px;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  line-height: 1;
  font-family: "Open Sans";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: "Open Sans";
  font-size: inherit;
}

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

button {
  cursor: pointer;
  background-color: inherit;
}

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

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

/*
&::-webkit-scrollbar {
	display: none;
}
*/
:root {
  --18px: max(1.25vw, 16px);
  --12px: max(0.8vw, 12px);
  --14px: max(1vw, 14px);
  --16px: max(1.1vw, 15px);
  --8px: max(0.55vw, 8px);
  --20px: max(1.4vw, 18px);
}

body {
  font-size: max(1.1vw, 13px);
  color: #192b3f;
}
body._lock {
  overflow: hidden;
}

svg {
  aspect-ratio: 1/1;
  width: max(1.6vw, 20px);
  opacity: 0.5;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
._container {
  max-width: 1430px;
  margin: 0 auto;
  padding: 0px 10px;
}

.button {
  display: inline-flex;
  padding: 0px 0px;
}
.button._fw {
  width: 100%;
}

.select {
  position: relative;
  color: #858FA4;
}
.select__item {
  position: relative;
}
.select__title {
  color: #000;
  cursor: pointer;
  border-radius: 4px;
}
.select__value {
  display: flex;
  font-size: 14px;
  height: 30px;
  padding: 0px 15px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  line-height: 140%;
  /* identical to box height, or 20px */
  text-align: right;
  color: #858FA4;
}
.select__value span {
  padding-right: 10px;
}
.select__value:before {
  content: "";
  display: inline-block;
  transition: all 0.3s ease 0s;
  width: 6px;
  height: 6px;
  background: url("../img/arrow.png") center/100% no-repeat;
}
.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}
.select__options {
  position: absolute;
  top: 29px;
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  border-top: 0;
  border-top: 0;
  font-size: 14px;
  padding: 10px 0px 5px 0px;
}
@media (max-width: 991.98px) {
  .select__options {
    font-size: 18px;
  }
}
.select__option {
  cursor: pointer;
  padding: 5px 15px;
  margin: 0px 0px 0px 0px;
}
@media (min-width: 992px) {
  .select__option:hover {
    background: #d9d9d9;
  }
}
.select._active {
  z-index: 5;
}
.select._active .select__value:before {
  transform: rotate(-180deg);
}
.select._active .select__options {
  display: block;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  outline: none;
}

.input {
  border-radius: 0 !important;
  width: 100%;
  display: block;
  padding: 0px 20px;
}
textarea.input {
  resize: none;
  padding: 0px 0px;
}

.checkbox {
  position: relative;
}
.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.checkbox__input:checked + .checkbox__text:before {
  background: #fff url("../img/icons/check.svg") center no-repeat;
}
.checkbox__text {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.25;
  cursor: pointer;
}
.checkbox__text:before {
  content: "";
  align-self: flex-start;
  margin: 0px 14px 0px 0px;
  flex: 0 0 20px;
  left: 0;
  top: 0;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}
.checkbox a {
  color: #fff;
  text-decoration: underline;
}
@media (min-width: 992px) {
  .checkbox a:hover {
    text-decoration: none;
  }
}
.checkbox._error .checkbox__text:before {
  border: 1px solid #ee1212;
}

.options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.options__item {
  position: relative;
  cursor: pointer;
}
.options__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  left: 0;
  top: 0;
  visibility: hidden;
}
.options__input:checked + .options__text:after {
  transform: scale(1);
}
.options__text {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.25;
}
.options__text:before {
  content: "";
  align-self: flex-start;
  margin: 0px 14px 0px 0px;
  flex: 0 0 20px;
  left: 0;
  top: 0;
  border-radius: 50%;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}
.options__text:after {
  content: "";
  transition: all 0.3s ease 0s;
  transform: scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #77243a;
  position: absolute;
  left: 5px;
  top: 4px;
}

.rating {
  display: flex;
  align-items: flex-end;
  font-size: 40px;
  line-height: 0.75;
  transition: opacity 0.3s ease 0s;
}

.rating.rating_sending {
  opacity: 0.2;
}

.rating.rating_set .rating__active,
.rating.rating_set .rating__item {
  cursor: pointer;
}

.rating__body {
  position: relative;
}

.rating__body::before {
  content: "★★★★★";
  display: block;
}

.rating__active {
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.rating__active::before {
  content: "★★★★★";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #ffd300;
}

.rating__items {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.rating__item {
  flex: 0 0 20%;
  height: 100%;
  opacity: 0;
}

.rating__value {
  font-size: 50%;
  line-height: 1;
  padding: 0px 0px 0px 10px;
}

.quantity {
  width: 88px;
  height: 40px;
  display: flex;
  border: 1px solid rgba(166, 166, 166, 0.45);
}
.quantity__button {
  flex: 0 0 30px;
  position: relative;
  cursor: pointer;
}
.quantity__button::before, .quantity__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease 0s;
  margin: 0px 0px 0px -4.5px;
  background-color: #a6a6a6;
  width: 9px;
  height: 1px;
}
@media (min-width: 991.98px) {
  .quantity__button:hover::before, .quantity__button:hover::after {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.quantity__button_plus::before {
  transform: rotate(-90deg);
}
.quantity__input {
  flex: 1 1 auto;
}
.quantity__input input {
  height: 100%;
  color: #a6a6a6;
  font-size: 12px;
  width: 100%;
  text-align: center;
}

.row:after {
  display: block;
  content: "";
  clear: both;
}

.rub:after {
  content: "₽";
}

ol.counter {
  list-style-type: none;
  counter-reset: item;
}
ol.counter li {
  position: relative;
  padding: 0px 0px 0px 45px;
}
ol.counter li:before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  color: #818181;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  border: 1px solid #4274bb;
}

.ellipsis {
  display: block;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.es {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.table {
  display: table;
  font-size: 0;
  width: 100%;
}

.trow {
  display: table-row;
}

.cell {
  display: table-cell;
}
.cell.full {
  width: 100%;
}

._ibg {
  position: relative;
}
._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

body.ie ._ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body.ie ._ibg img {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

._video {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}
._video video,
._video iframe,
._video object,
._video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videobg video,
.videobg iframe,
.videobg object,
.videobg embed {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
}

._more-content {
  transition: all 0.3s ease 0s;
  overflow: hidden;
}

._more-link {
  cursor: pointer;
}
._more-link span {
  font-style: normal;
}
._more-link span:first-child {
  display: block;
}
._more-link span:last-child {
  display: none;
}
._more-link._active span {
  font-style: normal;
}
._more-link._active span:first-child {
  display: none;
}
._more-link._active span:last-child {
  display: block;
}

#map {
  background: url("../img/icons/loading.gif") center/50px no-repeat;
}

.swiper {
  overflow: hidden;
}
.swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  display: flex;
  position: relative;
}
.swiper.swiper-container-vertical .swiper-wrapper {
  flex-direction: column;
}
.swiper.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
}

.swiper-container-initialized .swiper-slide {
  flex-shrink: 0;
}

.swiper-container-android .swiper-slide,
.swiper-container-android .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

._tabs-block {
  display: none;
}
._tabs-block._active {
  display: block;
}

.mirror {
  transform: scale(-1, 1);
}

.nicescroll-rails {
  z-index: 1000 !important;
}

._custom-scroll {
  position: fixed;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  z-index: 1000;
}
._custom-scroll__line {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px 0 0 3px;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
}

.popup {
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  padding: 30px 10px;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
}
.popup::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease 0s;
}
.popup.show {
  visibility: visible;
  overflow: auto;
}
.popup.show::before {
  opacity: 1;
}
.popup.show .popup__body {
  transform: scale(1);
}
.popup._active {
  overflow: auto;
  visibility: visible;
}
.popup._active::before {
  opacity: 1;
}
.popup._active .popup__body {
  transition: all 0.3s ease 0.2s;
  transform: scale(1);
}
.popup__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup__body {
  transform: scale(0);
  transition: all 0.3s ease 0s;
  background-color: #fff;
  padding: 50px;
  width: 100%;
  max-width: 800px;
}
.popup__close {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
  z-index: 30;
  background: url("../img/icons/close.svg") 0 0 no-repeat;
}

/*
//Burger
.icon-menu {
	display: none;
	@media (max-width: $md3+px) {
		display: block;
		position: absolute;
		top: 18px;
		right: 10px;
		width: 30px;
		height: 18px;
		cursor: pointer;
		z-index: 5;
		span {
			transition: all 0.3s ease 0s;
			top: calc(50% - 1px);
			left: 0px;
			position: absolute;
			width: 100%;
			height: 2px;
			background-color: #000;
			&:first-child {
				top: 0px;
			}
			&:last-child {
				top: auto;
				bottom: 0px;
			}
		}
		&._active {
			span {
				transform: scale(0);
				&:first-child {
					transform: rotate(-45deg);
					top: calc(50% - 1px);
				}
				&:last-child {
					transform: rotate(45deg);
					bottom: calc(50% - 1px);
				}
			}
		}
	}
}
*/
.page {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding: max(20px, 1.5vw) max(32px, 2.2vw);
}
.page._no-p {
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 998px) {
  .page {
    gap: 20px;
    padding: 20px 15px;
  }
}
.page._v2 {
  gap: 0;
  padding-bottom: 0;
}

.inp__wp._error span {
  display: block;
}
.inp__wp span {
  display: none;
}

._resp {
  overflow: hidden;
  transition: 0.3s;
}

._title {
  font-size: var(--18px);
  font-weight: 600;
  line-height: 1.2;
}
@media (max-width: 998px) {
  ._title {
    font-size: 22px;
  }
}
._title._v2 {
  font-size: max(1.5vw, 22px);
}
._title._title-p {
  padding: var(--12px) 0;
}

._btn {
  padding: max(0.5vw, 8px) var(--12px);
  padding-bottom: max(0.6vw, 10px);
  background: #3b4151;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--8px);
}
._btn:hover {
  background: #22262fb7;
}
._btn._v2 {
  background: #f6cc2f;
  color: #192b3f;
}
._btn._v2:hover {
  background: #f6cb2fca;
}
._btn._v3 {
  background: #fff;
  color: #192b3f;
  border: 1px solid #ffc900;
}
._btn svg {
  opacity: 1;
  width: var(--14px);
}

._btn-v3 {
  text-decoration: underline;
  color: #2a76ea;
  display: flex;
  align-items: center;
  gap: 10px;
}
._btn-v3 svg {
  width: 11px;
  opacity: 1;
  font-weight: 700;
}

.big-wrapper {
  display: grid;
  grid-template-columns: max(250px, 19vw) 1fr;
  min-height: 100vh;
}
@media (max-width: 998px) {
  .big-wrapper {
    grid-template-columns: 1fr;
  }
}

.header {
  padding: max(12px, 0.8vw) max(32px, 2.2vw);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #d9ddf9;
}
@media (max-width: 998px) {
  .header {
    padding: 30px 17px;
    border-bottom: 1px solid #d9ddf9;
    justify-content: end;
  }
}
.header__title {
  margin-right: auto;
}
@media (max-width: 998px) {
  .header .header__info {
    display: none;
  }
}
.header__info {
  display: flex;
}
.header__info div {
  padding: 8px;
}
.header__info div:not(:last-child) {
  border-right: 1px solid rgba(103, 116, 142, 0.24);
}
.header__info div span {
  font-size: var(--12px);
  color: #757b84;
}
.header__info div p {
  font-weight: 600;
  margin-top: 5px;
  font-size: var(--18px);
}
.header__btn {
  margin-left: 10px;
}
@media (max-width: 998px) {
  .header__btn {
    display: none;
  }
}
.header__links {
  display: flex;
  gap: var(--18px);
  margin-left: var(--18px);
  display: flex;
  align-items: center;
}
.header__links a {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  width: max(2.8vw, 40px);
  border-radius: 50%;
  background: rgba(94, 114, 228, 0.09);
}
.header__links a._active {
  position: relative;
}
.header__links a._active::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: var(--14px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #ffd228;
  transform: translate(10%, -10%);
}
.header__links a svg {
  opacity: 1;
}
@media (min-width: 998px) {
  .header__burger {
    display: none;
  }
}

.left-menu-wp {
  position: sticky;
  top: 0;
  height: max-content;
}
@media (max-width: 998px) {
  .left-menu-wp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background: transparent;
    pointer-events: none;
    z-index: 6;
    transition: 0.3s;
    overflow: hidden;
  }
  .left-menu-wp._active {
    background: rgba(39, 42, 53, 0.32);
    pointer-events: all;
  }
  .left-menu-wp._active .left-menu {
    transform: translate(0);
  }
}

.left-menu {
  background: #f7f8ff;
  display: flex;
  flex-direction: column;
  padding: 8px max(1.1vw, 14px);
  transition: 0.3s;
  min-height: 100vh;
}
@media (max-width: 998px) {
  .left-menu {
    max-width: 414px;
    position: relative;
    width: 90%;
    overflow: auto;
    height: 100vh;
    padding-top: 25px;
    transform: translate(-100%);
  }
}
.left-menu .header__info {
  margin-bottom: 20px;
}
.left-menu .header__info div {
  border: none;
}
@media (min-width: 998px) {
  .left-menu .header__info {
    display: none;
  }
}
.left-menu__close {
  display: none;
}
@media (max-width: 998px) {
  .left-menu__close {
    position: absolute;
    top: 20px;
    right: 15px;
    display: block;
    width: 24px;
  }
}
.left-menu__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.left-menu__top svg {
  transform: translate(0px, 25%);
}
@media (max-width: 998px) {
  .left-menu__top {
    display: none;
  }
}
.left-menu__logo {
  width: max(4.4vw, 50px);
}
.left-menu__logo img {
  width: 100%;
}
.left-menu__user {
  border: 1px solid rgba(103, 116, 142, 0.16);
  border-radius: 8px;
  padding: 8px 8px;
  display: grid;
  grid-template-columns: max(2.5vw, 30px) 1fr 25px;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.left-menu__user svg {
  width: 100%;
}
.left-menu__ava {
  width: 100%;
}
.left-menu__center p {
  font-size: max(12px, 0.8vw);
  opacity: 0.5;
  margin-top: 5px;
}
.left-menu__links {
  display: flex;
  flex-direction: column;
}
.left-menu__links a {
  display: flex;
  padding: 8px;
  align-items: center;
  gap: 8px;
  color: rgba(25, 43, 63, 0.5);
}
.left-menu__links a._active {
  background: #f6cc2f;
  color: #192b3f;
  border-radius: 8px;
}
.left-menu__links a svg {
  opacity: 1;
}
.left-menu__links._mb {
  margin-bottom: 50px;
}
.left-menu__title {
  margin-top: 16px;
  font-weight: 600;
  font-size: var(--18px);
  color: #757b84;
  margin-bottom: 8px;
}
.left-menu__bottom {
  margin-top: auto;
  background: #192b3f;
  display: flex;
  flex-direction: column;
  border-radius: max(9px, 0.6vw);
  padding: max(7px, 0.5vw) 20px;
}
.left-menu__bottom p {
  color: rgba(255, 255, 255, 0.41);
  font-size: max(9px, 0.6vw);
  margin-top: 2px;
}
.left-menu__bottom a {
  color: #e6b911;
  text-decoration: underline;
}
.left-menu__bottom h3 {
  color: #fff;
  font-size: max(1.4vw, 18px);
}
.left-menu__bottom span {
  color: rgba(255, 255, 255, 0.41);
  font-size: max(8px, 0.55vw);
}

.home {
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 20px;
}
.home._v2 {
  background: rgba(255, 223, 102, 0.31);
  border-radius: var(--12px);
}
@media (max-width: 1200px) {
  .home {
    flex-direction: column-reverse;
    display: flex;
    gap: 0px;
  }
}
.home__notification {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home__notification._v2 .notification {
  background: transparent;
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
}
.home__txt {
  max-width: max(630px, 43vw);
  color: #757b84;
  line-height: 1.3;
}
@media (max-width: 1200px) {
  .home__txt {
    margin-top: 10px;
  }
}
.home__text {
  padding: max(20px, 1.4vw);
  line-height: 1.3;
}

.notification {
  padding: var(--8px) var(--14px);
  background: #fff5d0;
  border-radius: var(--12px);
  display: flex;
  gap: var(--12px);
  align-items: center;
  line-height: 1.3;
  font-size: var(--16px);
  max-width: max(600px, 41vw);
}
@media (max-width: 1200px) {
  .notification {
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  .notification {
    flex-wrap: wrap;
  }
}
.notification span {
  font-size: var(--12px);
}
.notification svg {
  color: #be6c0e;
  opacity: 1;
}
.notification__img {
  flex: 0 0 max(40px, 2.7vw);
}
.notification__info {
  margin-right: auto;
}
.notification__date {
  color: rgba(59, 65, 81, 0.6);
}
@media (max-width: 998px) {
  .notification__date {
    font-size: 12px;
  }
}
.notification__btn {
  padding-left: max(1.7vw, 22px);
  padding-right: max(1.7vw, 22px);
}
@media (max-width: 700px) {
  .notification__btn {
    display: none;
  }
}
.notification__icon {
  flex: 0 0 var(--20px);
  width: var(--20px);
}
@media (max-width: 700px) {
  .notification__icon {
    display: none;
  }
}

.notification-more {
  display: flex;
  align-items: center;
  text-decoration: underline;
  opacity: 0.8;
  color: #2a76ea;
  gap: 10px;
}
.notification-more svg {
  width: 10px;
  opacity: 1;
  color: #2a76ea;
}

.notification-info {
  width: max(24vw, 300px);
  border-radius: var(--12px);
  padding: max(1.6vw, 24px);
  background: #f6cc2f;
  display: grid;
  grid-template-columns: max(3.8vw, 50px) 1fr;
  gap: var(--18px);
  background-image: url(../img/q.png);
  background-position: right 10%;
  background-repeat: no-repeat;
  background-size: 40%;
  max-height: max(10vw, 150px);
  line-height: 1.2;
}
@media (max-width: 1200px) {
  .notification-info {
    width: 100%;
    max-width: 500px;
  }
}
.notification-info__left {
  text-align: center;
  color: #565656;
  font-size: var(--12px);
}
.notification-info__left img {
  width: 100%;
  margin-bottom: 4px;
}
.notification-info__center {
  display: flex;
  gap: 6px;
  flex-direction: column;
}
.notification-info__center h3 {
  font-size: var(--20px);
  font-weight: 600;
}
.notification-info__center div {
  margin-top: auto;
  font-size: var(--12px);
  color: #000;
}
.notification-info__center div span {
  color: #626262;
}

._arrow {
  display: flex;
  gap: 10px;
}
._arrow div {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  transition: 0.3s;
  width: max(40px, 3vw);
}
._arrow div:hover svg {
  scale: 1.1;
}
._arrow div._arrow-r svg {
  transform: rotate(-90deg);
}
._arrow svg {
  width: max(11px, 0.7vw);
  opacity: 1;
  color: #000;
  transform: rotate(90deg);
}

.projects__top {
  border-bottom: 1px solid rgba(94, 114, 228, 0.24);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.projects__block {
  margin-top: 15px;
}
@media (max-width: 768px) {
  .projects__block {
    overflow: visible;
  }
}
.projects__item {
  border: 1px solid rgba(103, 116, 142, 0.16);
  border-radius: 15px;
  padding: var(--14px);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.projects__first {
  display: grid;
  grid-template-columns: max(2.7vw, 40px) 1fr max-content;
  gap: 10px;
}
.projects__icon {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: rgba(25, 43, 63, 0.05);
}
.projects__id {
  font-size: var(--12px);
  color: rgba(25, 43, 63, 0.5);
}
.projects__price {
  display: flex;
  flex-direction: column;
}
.projects__price span {
  font-weight: 400;
  color: rgba(25, 43, 63, 0.5);
  font-size: var(--12px);
}
.projects__btn {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .projects__btn {
    max-width: max-content;
  }
}

._tabs-itms {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid rgba(103, 116, 142, 0.12);
}
@media (max-width: 500px) {
  ._tabs-itms {
    gap: 12px;
  }
}
._tabs-itms div {
  padding-bottom: 12px;
  padding-top: 11px;
  cursor: pointer;
}
._tabs-itms div:not(._active) {
  opacity: 0.8;
  color: rgba(25, 43, 63, 0.5);
}
._tabs-itms div._active {
  border-bottom: 2px solid #e6b911;
}

.ul-itms {
  font-size: var(--12px);
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  max-height: max-content;
}
.ul-itms li {
  padding: max(0.2vw, 3px) max(0.7vw, 10px);
  background: rgba(42, 187, 127, 0.16);
  border-radius: max(28px, 1.9vw);
  color: #22a06b;
}
.ul-itms li._yelow {
  background: #fdf7d3;
  color: #dc9404;
}
.ul-itms li._yelow2 {
  background: #f1c927;
  color: #be6c0e;
}
.ul-itms li._grey {
  color: rgba(39, 42, 53, 0.52);
  background: rgba(103, 116, 142, 0.24);
}
.ul-itms li._grey2 {
  color: #192b3f;
  background: #ededee;
  border-radius: max(5px, 0.35vw);
}
.ul-itms li._grey3 {
  color: #192b3f;
  background: #f2f3ff;
  border-radius: max(5px, 0.35vw);
}
.ul-itms li._grey4 {
  color: rgba(25, 43, 63, 0.5);
  background: #f0f2fc;
}
.ul-itms li._white {
  color: #67748e;
  background: #fff;
  border: 1px solid rgba(103, 116, 142, 0.16);
  border-radius: var(--8px);
}
.ul-itms li._red {
  color: #dc4338;
  background: #feedec;
}
.ul-itms li._v4 {
  color: #5e72e4;
  background: rgba(94, 114, 228, 0.1);
}

.learn__top {
  margin-bottom: 5px;
}
.learn__block table,
.learn__block tbody {
  width: 100%;
}
@media (max-width: 800px) {
  .learn__block {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    overflow: scroll;
    padding-left: 15px;
  }
  .learn__block table {
    width: 800px;
    min-width: 800px;
  }
}
.learn__block table tbody tr {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  padding: 0 var(--8px);
  border-bottom: 1px solid rgba(103, 116, 142, 0.24);
  color: #3b4151;
}
.learn__block table tbody tr:not(:first-child) {
  border-radius: 8px;
}
.learn__block table tbody tr:not(:first-child) td:nth-child(1), .learn__block table tbody tr:not(:first-child) td:nth-child(2) {
  border-right: 1px solid rgba(103, 116, 142, 0.24);
}
.learn__block table tbody tr td {
  border-left: none !important;
}
@media (max-width: 998px) {
  .learn__block table tbody tr {
    grid-template-columns: 2.3fr 1fr 1fr 2fr;
  }
}
.learn__block table tbody tr:nth-child(1) {
  font-size: var(--16px);
  margin-bottom: 7px;
}
.learn__block td {
  display: flex;
  align-items: center;
  padding: var(--12px) 0;
}
.learn__block td:nth-child(1) {
  padding-right: 10px;
}
.learn__block td:nth-child(2), .learn__block td:nth-child(3) {
  padding-left: 7px;
}
.learn__btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: max-content;
  margin-left: auto;
  gap: var(--8px);
}
.learn__btn a:nth-child(1) {
  background: #e0e1ea;
  color: #192b3f;
}
.learn__btn._hidden {
  opacity: 0;
  pointer-events: none;
}

.dropdown._dts {
  width: max(32px, 2.2vw);
  background: transparent;
}
.dropdown._dts svg {
  color: inherit;
}
.dropdown._dts._open .dropdown__current {
  background: rgba(135, 147, 169, 0.16);
}
.dropdown._dts .dropdown__item {
  display: flex !important;
}
.dropdown._dts .dropdown__item a {
  color: inherit;
  display: flex;
  align-items: center;
  gap: var(--8px);
}
.dropdown._dts .dropdown__item a svg {
  opacity: 1;
}
.dropdown._dts .dropdown__current {
  padding: 0;
  background: transparent;
  width: max(32px, 2.2vw);
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.dropdown._dts .dropdown__current svg {
  pointer-events: none;
  opacity: 1;
}
.dropdown._dts .dropdown__list {
  width: 180px;
  right: 0;
  left: auto;
  border-radius: var(--8px);
  box-shadow: 0 4px 12px 1px rgba(110, 119, 130, 0.16), 0 1px 2px -1px rgba(110, 119, 130, 0.24);
}

.new.store-favorites .new__name {
  padding: var(--12px);
  font-weight: 600;
  font-size: var(--18px);
}
.new__top {
  border-bottom: 1px solid rgba(94, 114, 228, 0.24);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.new.store-new .new__top, .new.store-favorites .new__top {
  border-bottom: none;
}
.new__block {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .new__block {
    overflow: visible;
  }
}
.new__slide {
  cursor: pointer;
  color: inherit;
}
.new__slide a {
  color: inherit;
}
.new__slide:hover .new__head {
  text-decoration: underline;
}
.new__img {
  border-radius: 15px;
  aspect-ratio: 260/166;
  background: rgba(135, 147, 169, 0.08);
  position: relative;
}
.new.store-new .new__img {
  aspect-ratio: 244/267;
}
.new.store-favorites .new__img {
  aspect-ratio: 255/226;
}
.new__img ul {
  position: absolute;
  z-index: 2;
  padding: 12px;
}
.new__img ul li {
  border: none;
}
.new._lenta .new__img {
  aspect-ratio: 260/190;
}
.new__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--14px);
  object-position: center;
}
.new__img img:nth-child(2) {
  bottom: 0;
  right: 0;
  z-index: 2;
  width: 30%;
  border-radius: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
  height: auto;
  transform: translate(0px, 10%);
}
.new__img .dropdown {
  position: absolute;
  top: var(--8px);
  right: var(--8px);
}
.new__wpp {
  padding: 5px var(--12px);
}
.new__price {
  margin-top: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: max(2.1vw, 26px);
  font-weight: 600;
}
.new__price span {
  font-weight: 400;
  font-size: max(1.6vw, 20px);
  color: #5c6772;
  text-decoration: line-through;
}
.new__count {
  margin-top: 5px;
  font-size: var(--12px);
  color: #5c6772;
}
.new__count div {
  width: 100%;
  background: #b0bbc6;
  position: relative;
  height: 3px;
  margin-top: 4px;
}
.new__count div span {
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: #f6cc2f;
}
.new__name {
  margin-top: 6px;
  font-size: var(--16px);
}
.new.store-new .new__name {
  margin-top: var(--12px);
}
.new__btn {
  margin-top: 20px;
  min-height: max(50px, 4vw);
  gap: 20px;
}
.new__btn svg {
  opacity: 1;
  color: #000;
}
.new.store-new .new__btn {
  margin-top: max(2.4vw, 34px);
}
.new__head {
  margin-top: 12px;
}
.new__head._v2 {
  font-weight: 600;
  font-size: var(--18px);
}
@media (max-width: 600px) {
  .new__head._v2 {
    font-size: 14px;
  }
}
.new__txt {
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1.3;
  font-size: var(--12px);
  color: #67748e;
  margin-top: 6px;
}
.new__txt._v2 {
  font-size: var(--14px);
}
@media (max-width: 600px) {
  .new__txt._v2 {
    font-size: 13px;
  }
}
.new__txt._v3 {
  font-size: var(--16px);
}
@media (max-width: 600px) {
  .new__txt._v3 {
    font-size: 13px;
  }
}
.new__eco {
  margin-top: var(--8px);
}

.documets-tab__block tbody,
.documets-tab__block table {
  width: 100%;
}
@media (max-width: 1200px) {
  .documets-tab__block > div {
    width: calc(100vw - 290px);
    overflow: scroll;
  }
  .documets-tab__block > div table {
    width: 1000px;
  }
}
@media (max-width: 1200px) and (max-width: 998px) {
  .documets-tab__block > div {
    padding-right: 20px;
    width: calc(100vw - 0px);
  }
}
.documets-tab__block tbody tr {
  display: grid;
  grid-template-columns: 1fr 2.1fr 1.9fr 2fr 1fr 1.2fr max-content;
  border-bottom: 1px solid rgba(103, 116, 142, 0.24);
  margin-top: 6px;
}
.documets-tab__block tbody tr td {
  padding: max(0.7vw, 10px) max(0.7vw, 7px);
  display: flex;
  align-items: center;
}
.documets-tab__block tbody tr td:not(:first-child, :last-child) {
  border-left: 1px solid rgba(103, 116, 142, 0.16);
}
.documets-tab__block tbody tr td:nth-child(2), .documets-tab__block tbody tr td:nth-child(3) {
  flex-direction: column;
  align-items: flex-start;
}
.documets-tab__block tbody tr td:nth-child(2) a, .documets-tab__block tbody tr td:nth-child(3) a {
  color: #2a76ea;
  text-decoration: underline;
}
.documets-tab__block tbody tr td:nth-child(2) span, .documets-tab__block tbody tr td:nth-child(3) span {
  font-size: var(--12px);
  color: #67748e;
  display: block;
  margin-top: 4px;
}
.documets-tab__block tbody tr td:nth-child(4) {
  line-height: 1.2;
  font-size: var(--12px);
}
.documets-tab__block tbody tr td:nth-child(5) {
  text-align: center;
  justify-content: center;
}
.documets-tab__block tbody tr td:nth-child(6) {
  white-space: nowrap;
}
.documets-tab__block tbody tr td:nth-child(7) {
  gap: var(--12px);
}
.documets-tab__block tbody tr td:nth-child(7) svg {
  width: var(--20px);
  opacity: 1;
}
.documets-tab__block ._btn-v3 {
  margin-left: auto;
}

.colleague-tab__block tbody,
.colleague-tab__block table {
  width: 100%;
}
@media (max-width: 1100px) {
  .colleague-tab__block > div {
    width: calc(100vw - 290px);
    overflow: scroll;
  }
  .colleague-tab__block > div table {
    width: 800px;
  }
}
@media (max-width: 1100px) and (max-width: 998px) {
  .colleague-tab__block > div {
    padding-right: 20px;
    width: calc(100vw - 0px);
  }
}
.colleague-tab__block tbody tr {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 2fr;
  border-bottom: 1px solid rgba(103, 116, 142, 0.24);
  margin-top: 6px;
}
@media (max-width: 1200px) {
  .colleague-tab__block tbody tr {
    grid-template-columns: 1.3fr 2fr 2.4fr 1.8fr;
  }
}
.colleague-tab__block tbody tr td {
  padding: max(0.7vw, 10px) max(0.7vw, 7px);
  display: flex;
  align-items: center;
}
.colleague-tab__block tbody tr td:not(:first-child) {
  border-left: 1px solid rgba(103, 116, 142, 0.16);
}
.colleague-tab__block tbody tr td:nth-child(2), .colleague-tab__block tbody tr td:nth-child(3) {
  flex-direction: column;
  align-items: flex-start;
}
.colleague-tab__block tbody tr td:nth-child(2) a, .colleague-tab__block tbody tr td:nth-child(3) a {
  color: #2a76ea;
  text-decoration: underline;
}
.colleague-tab__block tbody tr td:nth-child(2) span, .colleague-tab__block tbody tr td:nth-child(3) span {
  font-size: var(--12px);
  color: #67748e;
  display: block;
  margin-top: 4px;
}
.colleague-tab__block tbody tr td:not(:first-child):nth-child(4) img {
  width: max(1.5vw, 22px);
}
.colleague-tab__block tbody tr td:not(:first-child):nth-child(4) div {
  width: 100%;
  gap: 3px;
  display: flex;
  justify-content: end;
  color: #e6b911;
  font-weight: 600;
  align-items: center;
  font-size: max(2.2vw, 32px);
}
.colleague-tab__block tbody tr td:not(:first-child):nth-child(4) div span {
  margin-left: 6px;
}
.colleague-tab__block ._btn-v3 {
  margin-left: auto;
}

table {
  width: 100%;
}
table tbody tr {
  display: grid;
  border-bottom: 1px solid rgba(103, 116, 142, 0.24);
  margin-top: 6px;
}
table tbody tr td {
  padding: max(0.7vw, 10px) max(0.7vw, 7px);
  display: flex;
  align-items: center;
}
table tbody tr td:not(:first-child) {
  border-left: 1px solid rgba(103, 116, 142, 0.16);
}
table tbody tr td a:not(._btn) {
  color: #2a76ea;
  text-decoration: underline;
}

.contragents-tab__block > div {
  margin-bottom: 10px;
}
@media (max-width: 650px) {
  .contragents-tab__block > div {
    width: calc(100vw - 20px);
    overflow: scroll;
  }
}
.contragents-tab__block table tbody tr {
  display: grid;
  grid-template-columns: max(4vw, 58px) max(18vw, 220px) 1fr max(140px, 10vw);
}
@media (max-width: 650px) {
  .contragents-tab__block table tbody tr {
    width: 650px;
  }
}
.contragents-tab__block table tbody tr td:nth-child(2) {
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
}
.contragents-tab__block table tbody tr td:nth-child(2) span {
  color: #67748e;
  font-size: var(--12px);
}
.contragents-tab__block table tbody tr td:nth-child(3) {
  gap: 5px;
}
.contragents-tab__block table tbody tr td:nth-child(4) {
  justify-content: center;
}

.partners__top button {
  margin-left: auto;
  padding: var(--8px) var(--20px);
}
.partners__block {
  margin-top: 25px;
}
.partners__details p {
  font-size: var(--18px);
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 25px;
}
@media (max-width: 1200px) {
  .partners__table {
    width: 100%;
    overflow: auto;
  }
  .partners__table table {
    width: 900px;
  }
}
.partners__table tbody tr {
  grid-template-columns: 1.1fr 1fr 1.2fr 1fr 1fr 1.8fr;
  border-radius: 8px;
}
.partners__table tbody tr:nth-child(1) {
  border-radius: 0px;
  font-weight: 700;
}
.partners__table tbody tr:nth-child(1) td {
  border: none;
}
.partners__table tbody tr td {
  padding: max(10px, 0.6vw) max(8px, 0.5vw);
}
.partners__table tbody tr td:nth-child(1) {
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.4;
}
.partners__table tbody tr td:nth-child(1) span {
  font-size: var(--12px);
  color: #67748e;
}
.partners__table tbody tr td:nth-child(6) {
  justify-content: end;
  gap: var(--12px);
}
.partners__table tbody tr td:nth-child(6) a {
  padding: var(--12px) max(2.7vw, 40px);
  background: #e0e1ea;
  color: #192b3f;
}

.partner-history {
  max-width: max(50vw, 700px);
}
.partner-history__top {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 20px;
  flex-wrap: wrap;
}
.partner-history__top::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  content: "";
  width: 100vw;
  height: 1px;
  border-bottom: 1px solid #dfe6ed;
}
.partner-history__top._padding {
  padding: var(--12px) 0;
}
.partner-history__order {
  display: flex;
  align-items: center;
  gap: var(--20px);
  margin-right: auto;
}
.partner-history__order .dropdown {
  width: max-content;
  max-width: max(13vw, 180px);
}
.partner-history__order .dropdown .dropdown__current {
  background: transparent;
  padding: var(--8px) 0;
  color: #192b3f;
  gap: var(--12px);
}
.partner-history__order .dropdown .dropdown__list {
  flex-direction: column;
  width: max(15.5vw, 224px);
  max-width: max-content;
  right: 0;
  left: auto;
}
.partner-history__order > div svg {
  width: var(--12px);
  flex: 0 0 var(--12px);
}
.partner-history__date {
  display: flex;
  align-items: center;
}
.partner-history__date div {
  display: flex;
  align-items: center;
  color: rgba(25, 43, 63, 0.5);
}
.partner-history__date div svg {
  opacity: 1;
  transform: rotate(-90deg);
  padding: var(--12px);
  width: max(2.7vw, 40px);
}
.partner-history__date div svg:nth-child(1) {
  transform: rotate(90deg);
}
.partner-history__block {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--20px);
}
@media (max-width: 700px) {
  .partner-history__block {
    grid-template-columns: 1fr;
  }
}
.partner-history__el {
  background: #ffdf66;
  border-radius: var(--12px);
  padding: var(--20px) var(--18px);
  display: flex;
  flex-direction: column;
}
.partner-history__el h2 {
  font-weight: 600;
  font-size: var(--18px);
}
.partner-history__el h3 {
  font-size: var(--20px);
  margin-top: var(--18px);
}
.partner-history__el h3 svg {
  width: 12px;
  opacity: 1;
  color: #000;
}
.partner-history__el p {
  font-size: var(--12px);
  margin-top: 5px;
  margin-bottom: var(--20px);
}
.partner-history__el a {
  margin-top: auto;
  max-width: max-content;
}
.partner-history__item {
  border-radius: var(--12px);
  background: #f7f8ff;
  padding: max(24px, 1.6vw) max(35px, 2.4vw);
}
@media (max-width: 700px) {
  .partner-history__item {
    padding: var(--20px) var(--18px);
  }
}
.partner-history__item li {
  display: flex;
  gap: var(--8px);
  padding: var(--8px) 0;
}
.partner-history__item li:not(:last-child) {
  border-bottom: 1px solid #dfe6ed;
}
.partner-history__item li span {
  font-size: var(--18px);
}
.partner-history__item li p {
  margin-left: auto;
  font-size: var(--16px);
}
.partner-history__title {
  margin-top: 10px;
}
.partner-history__table tbody tr {
  grid-template-columns: max(105px, 7.3vw) 1fr max(155px, 10.5vw);
}
@media (max-width: 700px) {
  .partner-history__table tbody tr {
    grid-template-columns: 1fr 2fr 1.3fr;
  }
}
.partner-history__table tbody tr td {
  padding: var(--18px) var(--8px);
}
.partner-history__table tbody tr td:last-child {
  padding-right: 0;
  color: #1f845a;
}
.partner-history__checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  align-items: center;
  margin-right: auto;
}
.partner-history__checkbox input {
  display: none;
}
.partner-history__checkbox input:checked + label {
  background: rgba(94, 114, 228, 0.09);
  opacity: 1;
}
.partner-history__checkbox label {
  opacity: 0.5;
  cursor: pointer;
  border-radius: max(0.3vw, 4px);
  padding: var(--8px) var(--12px);
}
.partner-history__sort {
  width: max(40px, 2.7vw);
}
.partner-history__sort img {
  width: 100%;
}

.projects-page__top {
  border-bottom: 1px solid #dfe6ed;
  border-top: 1px solid #dfe6ed;
  display: flex;
  justify-content: space-between;
  padding: var(--12px) 0;
  white-space: nowrap;
  gap: 20px;
}
.projects-page__group {
  display: flex;
  align-items: center;
  margin-top: max(2vw, 30px);
  gap: var(--8px);
}
.projects-page__group svg {
  padding: max(5px, 0.3vw);
  width: max(25px, 1.5vw);
}
.projects-page__group .dropdown svg {
  padding: 0;
}
.projects-page__group .dropdown .dropdown__current svg {
  transform: rotate(90deg);
}
.projects-page__group img {
  transform: rotate(90deg);
}
.projects-page__table {
  margin-top: var(--18px);
}
@media (max-width: 1200px) {
  .projects-page__table {
    width: 100%;
    overflow: auto;
  }
}
.projects-page__table tbody tr {
  grid-template-columns: max(40px, 2.8vw) 1.5fr 0.75fr 2fr 1fr 1fr 1fr max(50px, 3.5vw);
  position: relative;
  margin-top: 0;
}
.projects-page__table tbody tr::before {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: "";
  height: 2px;
  background: #fff;
  width: max(43px, 3vw);
}
@media (max-width: 1200px) {
  .projects-page__table tbody tr {
    width: 900px;
  }
}
.projects-page__table tbody tr td {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.projects-page__table tbody tr td span {
  color: rgba(25, 43, 63, 0.5);
  font-size: var(--12px);
  margin-top: 4px;
}
.projects-page__table tbody tr td:nth-child(2) {
  border: none;
}
.projects-page__table tbody tr td:nth-child(1) {
  padding: 0;
}
.projects-page__table tbody tr td:nth-child(1) div {
  background: rgba(25, 43, 63, 0.05);
  width: 100%;
  display: flex;
  aspect-ratio: 1/1;
  justify-content: center;
  align-items: center;
  border-radius: var(--8px);
  position: relative;
}
.projects-page__table tbody tr td:nth-child(3) {
  align-items: center;
  white-space: nowrap;
}
.projects-page__table tbody tr td:nth-child(5) {
  font-weight: 600;
  font-size: var(--16px);
}
.projects-page__table tbody tr td:nth-child(5) span {
  font-weight: 400;
}
.projects-page__table tbody tr td:nth-child(8) img {
  width: 100%;
}
.projects-page__table tbody tr td:nth-child(8) svg {
  opacity: 1;
  color: #000;
}

.search {
  padding: var(--8px);
  border-radius: var(--8px);
  background: #f7f8ff;
  display: flex;
  align-items: center;
  gap: var(--8px);
  max-width: max(15.5vw, 225px);
  width: 100%;
}
.search._big {
  max-width: 100%;
}
.search img {
  width: var(--20px);
}
.search input {
  background: transparent;
  width: 100%;
  font-size: var(--16px);
}
.search input::placeholder {
  font-size: var(--16px);
}

.plan-table {
  width: 100%;
  overflow: auto;
}
.plan-table:not(._v2) tbody tr td:first-child {
  font-weight: 700;
}
.plan-table tbody tr {
  margin-top: 0;
  grid-template-columns: 1.3fr repeat(8, 1fr) max(4.1vw, 60px);
}
@media (max-width: 1200px) {
  .plan-table tbody tr {
    width: 800px;
  }
}
.plan-table tbody tr:first-child {
  border-top: 1px solid rgba(103, 116, 142, 0.24);
}
.plan-table tbody tr td {
  justify-content: space-between;
}
.plan-table tbody tr td img {
  width: max(0.5vw, 7px);
}
.plan-table tbody tr td:last-child {
  justify-content: center;
}
.plan-table tbody tr td:last-child svg {
  cursor: pointer;
  transition: 0.3s;
}
.plan-table tbody tr td:last-child svg:hover {
  opacity: 0.9;
}
.plan-table tbody tr:last-child {
  background: rgba(247, 248, 255, 0.81);
}

.plan-table__title {
  display: flex;
  align-items: center;
  gap: var(--16px);
  cursor: pointer;
}
.plan-table__title:not(._active) svg {
  transform: rotate(180deg);
}
.plan-table__title svg {
  transition: 0.3s;
  width: var(--14px);
}

.stats__title {
  display: flex;
  align-items: center;
  font-size: max(2.2vw, 32px);
  gap: var(--18px);
  margin-top: max(2vw, 30px);
  margin-bottom: max(3.4vw, 50px);
}
.stats__title span {
  color: #757b84;
  font-size: var(--18px);
  font-weight: 400;
}
.stats__graph {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: var(--16px);
  margin-bottom: max(25px, 1.7vw);
}
@media (max-width: 800px) {
  .stats__graph {
    grid-template-columns: 1fr;
  }
}
.stats__left {
  padding: var(--16px) var(--16px);
  border: 1px solid rgba(103, 116, 142, 0.16);
  border-radius: var(--12px);
  display: flex;
  flex-direction: column;
}
@media (max-width: 500px) {
  .stats__left {
    padding: 10px;
  }
}
.stats__left div {
  display: flex;
  font-size: var(--16px);
  flex-wrap: wrap;
  font-weight: 600;
  gap: var(--12px);
}
.stats__left div span {
  color: #67748e;
}
.stats__left div a {
  margin-left: auto;
}
.stats__left canvas {
  max-width: 75%;
  margin: 0px auto;
  margin-top: var(--12px);
  margin-bottom: 20px;
}
.stats__left ul {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--12px);
  color: #67748e;
}
.stats__left ul li {
  display: flex;
  gap: var(--16px);
}
.stats__left ul li span {
  width: var(--12px);
  height: var(--12px);
  border-radius: 50%;
  flex: 0 0 var(--12px);
}
.stats__right {
  padding: var(--16px) var(--20px);
  border: 1px solid rgba(103, 116, 142, 0.16);
  border-radius: var(--12px);
}
@media (max-width: 500px) {
  .stats__right {
    padding: 10px;
  }
}
.stats__right h3 {
  font-weight: 600;
  font-size: var(--16px);
}
.stats__right p {
  color: #67748e;
  margin-top: var(--8px);
}
.stats__right span {
  display: block;
  margin-top: var(--18px);
  font-weight: 600;
  margin-bottom: var(--8px);
}
.stats__right canvas {
  width: 100%;
}
.stats__table {
  width: 100%;
  overflow: auto;
}
@media (max-width: 1200px) {
  .stats__table table {
    width: 900px;
  }
}
.stats__table tbody tr {
  grid-template-columns: 1.1fr 1.1fr 1.5fr 1.5fr 1fr 1fr 1fr;
}
.stats__table tbody tr:first-child {
  background: rgba(247, 248, 255, 0.81);
}
.stats__table tbody tr:not(:first-child) td:nth-child(2) {
  font-weight: 700;
}
.stats__table._v2 tbody tr {
  grid-template-columns: 2fr 1.1fr 1.55fr 1.55fr 0.8fr 0.8fr 0.8fr;
}
.stats__table._v2 tbody tr td {
  padding-right: 0;
  font-weight: 400 !important;
  display: flex;
  justify-content: space-between;
}
.stats__table._v2 tbody tr:not(:first-child) td:nth-child(1) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
}
.stats__table._v2 tbody tr:not(:first-child) td:nth-child(1) span {
  padding: max(0.7vw, 10px) max(0.7vw, 7px);
}
.stats__table._v2 tbody tr:not(:first-child) td:nth-child(1) span:nth-child(2) {
  border-left: 1px solid rgba(103, 116, 142, 0.16);
}

.check {
  overflow: auto;
  width: 100%;
}
.check tbody tr {
  grid-template-columns: 0.9fr 2fr 2.2fr 1fr 1.3fr 2.4fr;
  line-height: 1.2;
}
.check tbody tr:first-child {
  border-top: 1px solid rgba(103, 116, 142, 0.24);
  padding-top: var(--8px);
  padding-bottom: var(--8px);
}
.check tbody tr:first-child td {
  border: none;
}
@media (max-width: 1300px) {
  .check tbody tr {
    width: 1000px;
  }
}
.check tbody tr td:nth-child(2) {
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  justify-content: center;
}
.check tbody tr td:nth-child(2) span {
  color: #67748e;
  font-size: var(--12px);
}
.check tbody tr td:last-child {
  gap: var(--8px);
  padding-right: 0;
  flex-wrap: wrap;
}
.check tbody tr td:last-child ul {
  margin-right: auto;
}
.check tbody tr td:last-child ul li {
  display: flex;
  align-items: center;
  gap: 5px;
}
.check tbody tr td:last-child ul svg {
  width: var(--12px);
  opacity: 1;
}
.check tbody tr td:last-child svg {
  opacity: 1;
}
.check_1 tbody tr {
  grid-template-columns: 0.95fr 1.8fr 1.8fr 2fr 1fr 1.5fr 1fr max(50px, 3.5vw);
}
.check_1 tbody tr:not(:first-child) td:nth-child(3) {
  font-weight: 600;
}
.check_1 tbody tr td {
  padding-right: 0;
}
.check_4 tbody tr {
  grid-template-columns: max(4.1vw, 60px) max(16.5vw, 220px) 2fr 1fr;
}
@media (max-width: 1300px) {
  .check_4 tbody tr {
    width: 100%;
  }
}
@media (max-width: 800px) {
  .check_4 tbody tr {
    width: 800px;
  }
}
.check_4 tbody tr td:nth-child(2) {
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.check_4 tbody tr td:nth-child(2) span {
  color: #67748e;
  font-size: var(--12px);
}
.check_4 tbody tr td:nth-child(3) {
  gap: var(--8px);
}
.check_4 tbody tr td:nth-child(3) a {
  text-decoration: none;
}
.check_4 tbody tr td:last-child {
  gap: var(--12px);
  white-space: nowrap;
  flex-wrap: nowrap;
}
.check_4 tbody tr td:last-child ul {
  margin-right: auto;
}
.check_4 tbody tr td:last-child svg {
  opacity: 1;
}

.check-two ._tabs-itms {
  border-top: 2px solid rgba(103, 116, 142, 0.12);
  align-items: center;
  flex-wrap: wrap;
}
.check-two ._tabs-itms ._tabs-item {
  padding: var(--16px) 0;
}
.check-two .partner-history__top {
  border-bottom: none;
}
.check-two a._btn._v3 {
  margin-left: auto;
}

.dropdown {
  width: max(15.5vw, 224px);
  position: relative;
  user-select: none;
  background: #fff;
}
.dropdown._open {
  box-shadow: none;
}
.dropdown._open .dropdown__current::after {
  transform: rotate(180deg);
  filter: grayscale(0);
  opacity: 1;
}

.dropdown__current {
  padding: var(--12px);
  background: #f0f2fc;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  z-index: 1;
  border-radius: var(--8px);
  align-items: center;
  font-size: var(--16px);
  color: #757b84;
}
.dropdown__current span {
  pointer-events: none;
}
@media (max-width: 998px) {
  .dropdown__current {
    padding: 10px 8px;
  }
}
.dropdown__current svg {
  width: var(--16px);
}

.dropdown__list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  background: #fff;
  display: none;
  z-index: 10;
  box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0 0 4px 4px;
  padding: 5px 0;
}

.dropdown._open .dropdown__list {
  display: block;
}

.dropdown__item {
  padding: 11px 20px;
  cursor: pointer;
}

.dropdown__item:hover {
  color: var(--main-color);
  background: #f6f7f9;
}

.dropdown__item.hidden {
  display: none;
}

input._sablon,
textarea._sablon {
  padding: var(--12px);
  background: rgba(135, 147, 169, 0.08);
  border-radius: var(--8px);
  color: #67748e;
}
input._sablon::placeholder,
textarea._sablon::placeholder {
  color: #67748e;
}

textarea._sablon {
  max-width: 100%;
  min-width: 100%;
}

.new-doc {
  max-width: max(550px, 39vw);
  display: flex;
  flex-direction: column;
  gap: var(--12px);
}
.new-doc__top {
  display: grid;
  grid-template-columns: max-content 0.5fr max-content 1fr;
  align-items: center;
  font-size: max(22px, 1.2vw);
  gap: max(2.7vw, 40px);
  margin-top: var(--12px);
}
@media (max-width: 600px) {
  .new-doc__top {
    font-size: 15px;
    gap: 10px;
  }
}
.new-doc__top input {
  width: 100%;
  font-size: var(--14px);
}
.new-doc__el {
  display: grid;
  grid-template-columns: max(3.8vw, 55px) max(12.5vw, 180px) 1fr;
  gap: var(--8px);
  align-items: center;
}
@media (max-width: 600px) {
  .new-doc__el {
    grid-template-columns: 55px 1fr;
  }
}
.new-doc__el img {
  width: 100%;
}
.new-doc__el .dropdown {
  width: 100%;
}
.new-doc__el .dropdown .dropdown__current {
  background: rgba(135, 147, 169, 0.08);
}
.new-doc__wp-l {
  display: grid;
  grid-template-columns: max(4.1vw, 60px) max-content max(3.1vw, 45px) max-content 1fr;
  align-items: center;
  gap: 5px;
}
.new-doc__wp-l input {
  width: 100%;
}
.new-doc__line {
  display: grid;
  grid-template-columns: 4fr 1fr 1.8fr 1.8fr;
  gap: var(--12px);
  padding: var(--12px) 0;
}
@media (max-width: 500px) {
  .new-doc__line {
    grid-template-columns: 3fr 1.1fr 1.8fr 1.8fr;
  }
}
.new-doc__line:first-child {
  padding: var(--18px) 0;
}
.new-doc__line:not(:last-child) {
  border-top: 1px solid rgba(103, 116, 142, 0.24);
}
.new-doc__line input {
  width: 100%;
}
.new-doc__add {
  width: max(2.7vw, 40px);
}
.new-doc__add img {
  width: 100%;
}
.new-doc__creadte {
  min-width: max(160px, 11vw);
  margin-top: var(--20px);
}
.new-doc__three {
  width: 100%;
}
.new-doc__three input {
  width: 100%;
}
@media (max-width: 600px) {
  .new-doc__three {
    grid-column: auto/span 2;
  }
}

.date-wp {
  position: relative;
  /* Для Firefox (использует другой псевдоэлемент) */
  /* Для Edge/IE */
}
.date-wp input {
  padding-right: 0;
}
.date-wp::before {
  position: absolute;
  top: 50%;
  pointer-events: none;
  transform: translate(0px, -50%);
  right: 5%;
  content: "";
  background-image: url(../img/date.svg);
  height: 30%;
  aspect-ratio: 1/1;
  background-size: contain;
  background-repeat: no-repeat;
}
.date-wp input[type=date]::-webkit-calendar-picker-indicator,
.date-wp input[type=time]::-webkit-calendar-picker-indicator {
  opacity: 0;
}
.date-wp input[type=date]::-moz-calendar-picker-indicator {
  opacity: 0;
}
.date-wp input[type=date]::-ms-reveal {
  opacity: 0;
}

.act-table {
  width: 100%;
  overflow: auto;
}
@media (max-width: 1200px) {
  .act-table table {
    width: 800px;
  }
}
.act-table tbody tr {
  grid-template-columns: 0.8fr 0.85fr 2fr 2fr 3.5fr;
}
@media (max-width: 1200px) {
  .act-table tbody tr {
    grid-template-columns: 0.8fr 0.85fr 2fr 2fr 2.5fr;
  }
}
.act-table tbody tr:nth-child(1) td {
  font-weight: 700 !important;
  border: none;
}
.act-table tbody tr td:nth-child(2) {
  padding-right: 0;
}
.act-table tbody tr td:nth-child(3), .act-table tbody tr td:nth-child(4) {
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.act-table tbody tr td:nth-child(3) span, .act-table tbody tr td:nth-child(4) span {
  color: #67748e;
  font-size: var(--12px);
  font-weight: 400;
}
.act-table tbody tr td:nth-child(4) {
  font-weight: 600;
}
.act-table tbody tr td:last-child {
  justify-content: space-between;
}
.act-table tbody tr td:last-child svg {
  opacity: 1;
}
.act-table tbody tr td:last-child svg:hover {
  opacity: 0.8;
}

.documentation__chart {
  margin-top: var(--20px);
}

.menu-right {
  padding: var(--20px) var(--18px);
  background: #f6f7f9;
  display: flex;
  flex-direction: column;
  position: relative;
}
.menu-right::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: translate(100%);
  background: #f6f7f9;
}
@media (max-width: 600px) {
  .menu-right::before {
    display: none;
  }
}
@media (max-width: 700px) {
  .menu-right {
    padding: 10px;
    padding-right: 0px;
    font-size: var(--12px);
    line-height: 1.2;
  }
}
.menu-right a {
  color: #3b4151;
  text-decoration: underline;
}
.menu-right a:hover {
  color: #e6b911;
}
.menu-right > div {
  padding: var(--8px) 0;
}
.menu-right > div div {
  display: flex;
  text-decoration: underline;
  gap: max(1vw, 15px);
  cursor: pointer;
}
@media (max-width: 700px) {
  .menu-right > div div {
    gap: 7px;
  }
}
.menu-right > div svg {
  width: max(1vw, 15px);
  opacity: 1;
  transition: 0.3s;
  transform: rotate(-90deg);
}
@media (max-width: 700px) {
  .menu-right > div svg {
    width: 10px;
  }
}
.menu-right > a {
  padding: var(--8px) 0;
  padding-left: max(2vw, 30px);
}
@media (max-width: 700px) {
  .menu-right > a {
    padding-left: 20px;
  }
}
.menu-right__el._active {
  color: #e6b911;
}
.menu-right__el._active svg {
  transform: rotate(0deg);
  color: #e6b911;
}
.menu-right__el._active ul {
  display: flex;
}
.menu-right__el ul {
  display: none;
  flex-direction: column;
  margin-top: var(--8px);
  padding-left: max(3.5vw, 50px);
}
@media (max-width: 700px) {
  .menu-right__el ul {
    padding-left: 25px;
  }
}
.menu-right__el ul a {
  padding: var(--8px) 0;
  display: block;
}

.documentation {
  display: grid;
  grid-template-columns: 1fr max(260px, 18vw);
  gap: var(--20px);
}
@media (max-width: 700px) {
  .documentation {
    grid-template-columns: 1fr;
  }
}
.documentation__block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--20px);
}
@media (max-width: 1200px) {
  .documentation__block {
    grid-template-columns: 1fr 1fr;
  }
}
.documentation__wp {
  line-height: 1.3;
}
.documentation__text {
  margin-top: var(--20px);
}
.documentation__info {
  margin-top: var(--12px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--12px);
}
@media (max-width: 600px) {
  .documentation__info {
    grid-template-columns: 1fr;
  }
}
.documentation__info p {
  position: relative;
  padding-left: var(--18px);
}
.documentation__info p::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: url(../img/Polygon.svg);
  width: var(--12px);
  aspect-ratio: 1/1;
  background-size: contain;
  background-repeat: no-repeat;
}

.request__btn {
  max-width: max(230px, 16vw);
  margin-left: auto;
  padding: var(--12px);
}
@media (max-width: 700px) {
  .request__btn {
    max-width: 180px;
  }
}
.request__table {
  width: 100%;
  overflow: auto;
}
.request__table tbody tr {
  grid-template-columns: 0.4fr 2.5fr 0.7fr 1.7fr 0.8fr 0.8fr;
}
@media (max-width: 900px) {
  .request__table tbody tr {
    width: 900px;
  }
}
.request__table tbody tr:nth-child(1) {
  padding: var(--8px) 0;
}
.request__table tbody tr td {
  border: none !important;
}
.request__table tbody tr td:nth-child(1) {
  padding-right: 0;
  white-space: nowrap;
}
.request__table tbody tr td:nth-child(2) {
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.request__table tbody tr td:nth-child(2) span {
  color: rgba(25, 43, 63, 0.5);
  font-size: var(--12px);
}

input._togle {
  display: none;
}
input._togle:checked + label {
  background: #2abb7f;
}
input._togle:checked + label::before {
  left: calc(100% - 2px);
  transform: translate(-100%, -50%);
}
input._togle + label {
  width: 40px;
  height: 24px;
  flex: 0 0 40px;
  display: block;
  background: rgba(135, 147, 169, 0.16);
  position: relative;
  border-radius: 100px;
  transition: 0.3s;
}
input._togle + label::before {
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translate(0px, -50%);
  content: "";
  transition: 0.3s;
  box-shadow: 0 3px 1px 0 rgba(0, 0, 0, 0.06), 0 3px 8px 0 rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.04);
  background: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  border-radius: 100px;
}

.quest-page {
  display: grid;
  grid-template-columns: 1fr max(24vw, 350px);
  gap: var(--20px);
  height: 100%;
}
@media (max-width: 700px) {
  .quest-page {
    grid-template-columns: 1fr;
  }
}
.quest-page__wp {
  max-width: max(25.7vw, 370px);
  display: flex;
  flex-direction: column;
  gap: var(--16px);
  padding-top: var(--20px);
}
.quest-page__inp {
  width: 100%;
}
.quest-page__inp > span {
  color: rgba(25, 43, 63, 0.5);
  margin-bottom: var(--12px);
  display: block;
}
.quest-page__inp input,
.quest-page__inp textarea {
  width: 100%;
  background: #f0f2fc;
}
.quest-page__inp .dropdown {
  width: 100%;
}
.quest-page__togle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.quest-page__upload {
  display: flex;
  justify-content: space-between;
}
.quest-page__upload label {
  background: rgba(94, 114, 228, 0.09);
  color: #192b3f;
  white-space: nowrap;
}
.quest-page__upload svg {
  opacity: 1;
  color: #000;
}
.quest-page__upload input {
  display: none;
}
.quest-page__upload div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.quest-page__upload div span {
  font-size: var(--12px);
  color: rgba(25, 43, 63, 0.5);
}
.quest-page__txt {
  background: #f6f7f9;
  padding: max(25px, 1.7vw);
  padding-right: 0;
  position: relative;
  line-height: 1.3;
}
@media (max-width: 700px) {
  .quest-page__txt {
    padding: 20px;
  }
}
.quest-page__txt a {
  color: #efb701;
}
.quest-page__txt a:hover {
  text-decoration: underline;
}
.quest-page__txt::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  background: #f6f7f9;
  width: 100%;
  height: 100%;
  transform: translate(100%);
}
@media (max-width: 700px) {
  .quest-page__txt::before {
    display: none;
  }
}

.viewing {
  display: flex;
  flex-direction: column;
  height: calc(100vh - var(--height) - 50px);
  min-height: max(700px, 48vw);
}
.viewing__wp {
  max-width: max(625px, 43.4vw);
  flex: 0 1 max-content;
  gap: var(--16px);
  display: flex;
  flex-direction: column;
  overflow: auto;
}
.viewing__title {
  font-size: max(1.5vw, 22px);
}
.viewing__text {
  margin-top: var(--16px);
  line-height: 1.3;
  font-size: var(--16px);
}
.viewing__el {
  padding-top: var(--8px);
  display: flex;
  flex-direction: column;
  gap: var(--16px);
}
.viewing__top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.viewing__top ul {
  color: #192b3f;
  font-size: var(--14px);
  font-weight: 600;
}
.viewing__top ul li {
  background: rgba(94, 114, 228, 0.09);
}
.viewing__left span {
  color: rgba(25, 43, 63, 0.5);
  font-size: var(--12px);
  margin-top: 4px;
  line-height: 1.2;
  display: block;
}
.viewing__info {
  font-size: var(--16px);
  display: grid;
  grid-template-columns: max(40px, 2.7vw) 1fr;
  gap: var(--12px);
  line-height: 1.3;
}
.viewing canvas {
  border: 1px solid rgba(94, 114, 228, 0.16);
  border-radius: var(--18px);
}
.viewing__bottom {
  flex: 0 0 max-content;
  margin-top: var(--20px);
}
.viewing textarea {
  background: #f0f2fc;
  border: 1px solid #dfe1f2;
  border-radius: var(--8px);
  padding: var(--12px);
  margin-bottom: var(--16px);
  min-height: max(170px, 12vw);
  display: block;
}
.viewing button {
  max-width: max(16vw, 235px);
  width: 100%;
}

.specialist {
  display: grid;
  grid-template-columns: 1fr 40%;
  position: relative;
  height: 100%;
}
@media (max-width: 1200px) {
  .specialist {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 998px) {
  .specialist {
    min-height: 500px;
  }
}
@media (max-width: 600px) {
  .specialist__wp {
    overflow: auto;
  }
  .specialist__wp table {
    width: 550px;
  }
  .specialist._v2 .specialist__wp {
    overflow: visible;
  }
}
.specialist__wp tbody tr {
  grid-template-columns: 0.7fr 2.8fr 1fr 1fr 1fr;
  margin-top: 0;
}
.specialist__wp tbody tr:nth-child(odd) {
  background: #f7f8ff;
}
.specialist__wp tbody tr:nth-child(1) {
  background: transparent;
}
.specialist__wp tbody tr td {
  border: none !important;
}
.specialist__wp tbody tr td:nth-child(1) {
  white-space: nowrap;
}
.specialist__wp tbody tr td:nth-child(2) {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  gap: 3px;
  align-items: flex-start;
}
.specialist__wp tbody tr td:nth-child(2) span {
  color: rgba(25, 43, 63, 0.5);
  font-size: var(--12px);
}
.specialist__wp tbody tr td:nth-child(3) {
  padding-left: 0;
  padding-right: 0;
}
.specialist__right {
  background: #f8f8fd;
  padding: var(--12px) max(2.2vw, 32px);
  border-left: 1px solid rgba(103, 116, 142, 0.12);
  padding-right: 0;
  position: relative;
  position: absolute;
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 40%;
  right: 0;
}
@media (max-width: 1200px) {
  .specialist__right {
    position: absolute;
    right: 0;
    max-width: 500px;
    width: 100%;
    transform: translate(150%);
    transition: 0.6s;
  }
  .specialist__right._active {
    transform: translate(0);
  }
  .specialist._v2 .specialist__right {
    position: relative;
    transform: translate(0);
    margin-top: 20px;
    max-width: 100%;
    padding-bottom: 30px;
  }
}
@media (max-width: 700px) {
  .specialist__right {
    padding-left: 0;
    border: none;
    max-width: 100%;
  }
}
.specialist__right::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  background: #f8f8fd;
  width: 100%;
  height: 100%;
  transform: translate(100%);
}
@media (max-width: 700px) {
  .specialist__right::before {
    width: 20px;
  }
  .specialist__right::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background: #f8f8fd;
    width: 20px;
    height: 100%;
    transform: translate(-100%);
  }
}
.specialist__title {
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  font-size: var(--20px);
  align-items: center;
  gap: 20px;
}
.specialist__title svg {
  opacity: 1;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .specialist__title svg {
    display: none;
  }
}
.specialist__inf {
  margin-top: var(--8px);
  display: grid;
  grid-template-columns: 2fr 1.5fr max-content;
  gap: var(--8px);
  border-bottom: 1px solid #d8dcf2;
  padding-bottom: var(--12px);
}
.specialist__inf span {
  color: rgba(25, 43, 63, 0.5);
}
.specialist__inf div {
  display: flex;
  flex-direction: column;
  gap: var(--8px);
}
.specialist__inf a {
  color: #2a76ea;
  text-decoration: underline;
}
.specialist__chat {
  padding: var(--12px) var(--8px);
  display: flex;
  flex-direction: column;
  gap: max(1.6vw, 24px);
  overflow: auto;
  height: 100%;
}
.specialist__chat._margin {
  margin-top: var(--20px);
  padding-top: var(--20px);
}
.specialist__message {
  display: grid;
  grid-template-columns: max(40px, 2.7vw) 1fr;
  gap: var(--8px);
}
.specialist__message._user .specialist__avatar span {
  color: rgba(25, 43, 63, 0.5);
  background: rgba(25, 43, 63, 0.05);
}
.specialist__message._user .specialist__top-info p {
  color: #192b3f;
}
.specialist__avatar span {
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f6cc2f;
  font-weight: 600;
  font-size: var(--18px);
  background: #f6cb2f14;
}
.specialist__avatar img {
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
}
.specialist__photo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: var(--8px);
}
.specialist__photo img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--8px);
  object-fit: cover;
  object-position: center;
}
.specialist__top-info {
  display: flex;
  gap: var(--8px);
  flex-wrap: wrap;
  align-items: center;
}
.specialist__top-info p {
  color: #f6cc2f;
  font-weight: 600;
  font-size: var(--18px);
}
.specialist__top-info span {
  color: rgba(25, 43, 63, 0.5);
  margin-top: 5px;
}
.specialist__date {
  color: #757b84;
  font-size: var(--12px);
  line-height: 1.3;
  margin-top: 4px;
}
.specialist__txt {
  margin-top: var(--8px);
  line-height: 1.3;
}
.specialist__txt p {
  display: inline;
  color: #efb701;
  font-size: var(--18px);
  white-space: nowrap;
}
.specialist__txt p img {
  width: var(--20px);
}
.specialist__bottom {
  border-top: 1px solid rgba(103, 116, 142, 0.12);
  display: grid;
  grid-template-columns: max(2.7vw, 40px) 1fr max(2.7vw, 40px);
  gap: var(--16px);
  align-items: center;
  padding-top: var(--20px);
}
.specialist__bottom input[type=file] {
  display: none;
}

/* ВСЕ скроллбары на сайте */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: #e5e7f1;
  box-shadow: none;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #d3d5de;
  box-shadow: none;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #e5e7f1;
  box-shadow: none;
}

.store__block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--16px);
}
@media (max-width: 750px) {
  .store__block {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.store__wp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: max(2.7vw, 40px);
}
@media (max-width: 700px) {
  .store__wp {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.store__el {
  aspect-ratio: 533/590;
  position: relative;
  z-index: 2;
  padding: var(--20px);
  display: flex;
}
.store__el img {
  border-radius: var(--8px);
  width: 100%;
  object-fit: cover;
  height: 100%;
  top: 0;
  left: 0;
  color: #fff;
  position: absolute;
  z-index: -1;
}
.store__btm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: auto;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: var(--20px);
}
@media (max-width: 998px) {
  .store__btm {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}
.store__btm .new__price {
  color: #fff;
  font-size: max(26px, 2vw);
}
.store__btm .new__price span {
  color: rgba(247, 248, 255, 0.51);
  font-size: max(20px, 1.6vw);
}
.store__btm .new__count {
  color: #fff;
}
.store__btm .new__name {
  color: #fff;
  font-size: var(--20px);
}
.referal-block {
  background: radial-gradient(105.56% 104.47% at 65.94% 0%, #f6cc2f 0%, #f5e196 47.4%, #eac332 100%);
  position: relative;
  z-index: 1;
  border-radius: var(--20px);
  padding: var(--20px) var(--16px);
  padding-bottom: max(6vw, 90px);
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.referal-block::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
  background-image: url(../img/celiki.png);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 60%;
  opacity: 0.8;
}
@media (max-width: 700px) {
  .referal-block::before {
    background-position: center 35%;
  }
}
@media (max-width: 700px) {
  .referal-block {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 16px;
  }
}
.referal-block__left ul li {
  font-size: var(--18px);
  color: #192b3f !important;
  font-weight: 600;
  border-radius: var(--8px);
}
.referal-block__left h1 {
  font-size: max(32px, 2.1vw);
  font-weight: 600;
  line-height: 1.2;
  margin-top: max(3vw, 45px);
}
@media (max-width: 700px) {
  .referal-block__left h1 {
    margin-top: 20px;
  }
}
.referal-block__left p {
  font-size: var(--18px);
  margin-top: var(--12px);
  line-height: 1.3;
}
.referal-block__right {
  display: grid;
  grid-template-columns: max(170px, 11.5vw) 1fr;
  gap: max(30px, 2vw);
  align-items: center;
  color: #fff;
}
@media (max-width: 500px) {
  .referal-block__right {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.referal-block__img {
  width: 100%;
}
@media (max-width: 500px) {
  .referal-block__img {
    max-width: 150px;
  }
}
.referal-block__img img {
  width: 100%;
}
.referal-block__wp {
  display: flex;
  flex-direction: column;
  gap: var(--8px);
}
@media (max-width: 500px) {
  .referal-block__wp {
    gap: 12px;
  }
}
.referal-block__wp p {
  font-weight: 600;
  font-size: max(32px, 2.1vw);
}
.referal-block__wp span {
  font-size: var(--18px);
  font-weight: 600;
}
.store-friend {
  padding: max(66px, 4.5vw) max(60px, 4.1vw);
  background: #192b3f;
  color: #fff;
  border-radius: max(35px, 2.4vw);
  position: relative;
  overflow: hidden;
}
@media (max-width: 800px) {
  .store-friend {
    padding: 20px;
    border-radius: 25px;
  }
}
.store-friend__left {
  font-size: var(--16px);
  position: relative;
  z-index: 2;
}
.store-friend__left h2 {
  font-weight: 800;
  font-size: max(40px, 2.7vw);
}
@media (max-width: 800px) {
  .store-friend__left h2 {
    font-size: 30px;
    margin-bottom: 20px;
    margin-top: 10px;
  }
}
.store-friend__img {
  position: absolute;
  right: 10%;
  top: 0;
  width: max(2.4vw, 350px);
}
@media (max-width: 800px) {
  .store-friend__img {
    position: relative;
    margin-bottom: -30%;
  }
}
.store-friend__img::before {
  position: absolute;
  top: 0;
  right: -20%;
  content: "";
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 150%;
  transform: translate(0px, -90%);
  background: radial-gradient(50% 50% at 50% 50%, #f6cc2f 0%, #f6cc2f 100%);
  filter: blur(100px);
}
@media (max-width: 800px) {
  .store-friend__img::before {
    opacity: 0.5;
  }
}
.store-friend__img img {
  width: 100%;
}

.cases__top {
  display: flex;
  align-items: center;
  gap: var(--12px);
}
.cases__top:not(._active) svg {
  transform: rotate(180deg);
}
.cases__top svg {
  width: var(--12px);
  opacity: 1;
  transition: 0.3s;
}
.cases__block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--20px);
  margin-bottom: var(--14px);
}
@media (max-width: 1200px) {
  .cases__block {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 700px) {
  .cases__block {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.cases__block:not(._news) .new__head {
  font-size: var(--18px);
  font-weight: 600;
}

.case {
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  gap: var(--20px);
}
.case__title {
  font-weight: 700;
  font-size: max(22px, 1.5vw);
}
.case__block {
  margin-top: var(--14px);
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: max(35px, 2.1vw);
}
@media (max-width: 700px) {
  .case__block {
    gap: 20px;
    margin-top: 25px;
    grid-template-columns: 1fr;
  }
}
.case__left {
  display: flex;
  flex-direction: column;
  gap: var(--18px);
}
.case__left ul {
  display: flex;
  flex-direction: column;
  gap: var(--16px);
}
.case__left ul li {
  padding-left: max(2.7vw, 40px);
  position: relative;
}
.case__left ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: url(../img/Ellipse.svg);
  width: max(23px, 1.6vw);
  aspect-ratio: 1/1;
  background-size: contain;
}
.case__left p {
  padding-left: max(2.7vw, 40px);
  position: relative;
}
.case__left p::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: var(--8px);
  height: 100%;
  background: #f6cc2f;
}
.case__left b {
  padding-left: max(2.7vw, 40px);
}
.case__img img {
  width: 100%;
  border-radius: var(--18px);
}
.case__problem {
  background: #f3f3f6;
  padding: max(35px, 2.4vw);
  margin-top: var(--14px);
}
@media (max-width: 500px) {
  .case__problem {
    padding: 20px;
  }
}
.case__subtitle {
  margin-top: var(--20px);
}
.case__list {
  margin-top: var(--20px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--18px);
}
@media (max-width: 700px) {
  .case__list {
    grid-template-columns: 1fr;
  }
}
.case__list li {
  display: grid;
  grid-template-columns: max(30px, 2vw) 1fr;
  gap: var(--14px);
}
.case__list li span {
  font-weight: 600;
  font-size: var(--20px);
  background: #f6cc2f;
  aspect-ratio: 1/1;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.case .documentation__info {
  font-size: var(--20px);
}
@media (max-width: 500px) {
  .case .documentation__info {
    font-size: var(--16px);
  }
}
.case__text {
  font-size: var(--20px);
}
@media (max-width: 500px) {
  .case__text {
    font-size: var(--16px);
  }
}
.case__info {
  background: #ffe173;
  border-radius: var(--14px);
  padding: var(--16px);
  font-size: var(--20px);
}
@media (max-width: 500px) {
  .case__info {
    font-size: var(--16px);
  }
}
.case__info h3 {
  font-weight: 600;
  font-size: var(--18px);
}
.case__info p {
  font-size: var(--16px);
}
.case__info._v2 {
  background: radial-gradient(105.56% 104.47% at 65.94% 0%, #f6cc2f 0%, #f5e196 47.4%, #eac332 100%);
  border-radius: var(--18px);
  padding: var(--20px) max(40px, 2.7vw);
}
@media (max-width: 500px) {
  .case__info._v2 {
    padding: 16px;
  }
}

.education {
  display: grid;
  grid-template-columns: 2.3fr 1fr;
  gap: var(--20px);
}
@media (max-width: 850px) {
  .education {
    grid-template-columns: 1fr;
  }
}
.education__left {
  display: flex;
  flex-direction: column;
  gap: var(--8px);
  line-height: 1.3;
  padding-bottom: 20px;
}
.education__left canvas {
  margin: var(--14px) 0;
}
.education__left ul li {
  align-items: center;
  display: flex;
  gap: 5px;
}
.education__left ._btn {
  max-width: max-content;
  padding: var(--8px) max(30px, 2vw);
}
.education__title {
  font-size: max(22px, 1.5vw);
  font-weight: 700;
}
.education__right {
  background: #f6f7f9;
  padding: var(--20px) max(32px, 2.2vw);
  padding-right: 0;
  display: flex;
  flex-direction: column;
  gap: max(24px, 1.6vw);
  position: relative;
}
@media (max-width: 850px) {
  .education__right {
    background: transparent;
    padding: 0;
    max-width: 400px;
  }
  .education__right::before {
    display: none;
  }
}
.education__right::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  background: #f6f7f9;
  height: 100%;
  transform: translate(100%);
}

.test {
  max-width: max(51vw, 740px);
}
.test__title {
  font-weight: 600;
  font-size: var(--20px);
  padding: var(--20px) 0;
}
.test__block {
  margin-top: var(--8px);
  line-height: 1.4;
}
.test__wp {
  margin-top: var(--20px);
  display: flex;
  flex-direction: column;
  gap: var(--16px);
  padding-top: max(40px, 2.7vw);
  border-top: 1px solid rgba(94, 114, 228, 0.16);
  border-bottom: 1px solid rgba(94, 114, 228, 0.16);
  padding-bottom: var(--16px);
}
.test__itm input {
  display: none;
}
.test__itm input:checked + label .test__cec {
  border-color: #e6b911;
  background: #e6b911;
  background-image: url(../img/cec.svg);
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: center;
}
.test__itm input:checked + label .test__name {
  background: #e6b81115;
  color: #e6b911;
}
.test__itm label {
  width: 100%;
  display: grid;
  grid-template-columns: max(40px, 2.7vw) 1fr var(--20px);
  gap: var(--12px);
  align-items: center;
  cursor: pointer;
}
.test__text {
  margin-top: var(--12px);
}
.test__name {
  aspect-ratio: 1/1;
  background: #5e72e413;
  color: #5e72e4;
  font-weight: 600;
  font-size: var(--14px);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--8px);
}
.test__inf {
  display: flex;
  flex-direction: column;
}
.test__inf span {
  font-size: var(--12px);
  color: #67748e;
}
.test__cec {
  border: max(2.5px, 0.14vw) solid #67748e;
  aspect-ratio: 1/1;
  border-radius: max(0.3vw, 4px);
}
.test__bottom {
  padding: var(--12px) 0;
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  gap: var(--12px);
  align-items: center;
}
.test__counter {
  font-weight: 600;
  color: rgba(25, 43, 63, 0.5);
}
.test__progress {
  height: var(--12px);
  position: relative;
  background-color: #f7f8ff;
}
.test__progress span {
  background: #ffd228;
  width: 100%;
  height: 100%;
  position: absolute;
  transform-origin: left;
}
.test__swipe {
  display: flex;
  gap: var(--8px);
  align-items: center;
}
.test__swipe .test__back {
  background: transparent;
  color: rgba(25, 43, 63, 0.5);
}
.test__swipe .test__next {
  padding: var(--8px) max(30px, 2vw);
}

.sertificat__block {
  margin-top: max(30px, 2vw);
  gap: max(25px, 1.5vw);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 1200px) {
  .sertificat__block {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 700px) {
  .sertificat__block {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}
@media (max-width: 500px) {
  .sertificat__block {
    grid-template-columns: repeat(3, 1fr);
  }
}
.sertificat__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  text-align: center;
}
.sertificat__item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-position: center;
  object-fit: contain;
  margin-bottom: var(--12px);
}
.sertificat__item h3 {
  margin-top: var(--12px);
  font-weight: 700;
}
.sertificat__item p {
  color: #67748e;
  font-size: var(--12px);
  display: flex;
  flex-direction: column;
  gap: var(--8px);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: var(--8px);
  max-width: max(59vw, 850px);
}
.faq__el {
  border-bottom: 1px solid rgba(94, 114, 228, 0.16);
}
.faq__quest {
  padding: var(--12px) var(--8px);
  display: flex;
  align-items: center;
  gap: var(--12px);
  cursor: pointer;
  font-weight: 600;
}
.faq__quest svg {
  flex: 0 0 var(--16px);
  width: var(--16px);
  opacity: 1;
}
.faq__resp div {
  padding: var(--8px);
  display: flex;
  align-items: flex-start;
}
@media (max-width: 700px) {
  .faq__resp div {
    flex-wrap: wrap;
  }
}
.faq__icon {
  width: max(2.7vw, 40px);
  flex: 0 0 max(2.7vw, 40px);
  gap: var(--16px);
}
.faq__icon img {
  width: 100%;
}
.faq__text {
  line-height: 1.4;
}
.faq__price {
  border-left: 1px solid #ecf3fe;
  border-right: 1px solid #ecf3fe;
  padding: 8px;
  display: flex;
  flex-direction: column;
  width: max(12vw, 180px);
  flex: 0 0 max(12vw, 180px);
  gap: 5;
  line-height: 1.3;
}
.faq__price span {
  font-size: var(--12px);
  color: #67748e;
}

@media (max-width: 700px) {
  .rating-page-wp {
    overflow: auto;
  }
}

.rating-page {
  display: flex;
  flex-direction: column;
  gap: var(--8px);
  margin-top: max(35px, 2.5vw);
}
@media (max-width: 700px) {
  .rating-page {
    width: 700px;
  }
}
.rating-page__itm {
  display: grid;
  grid-template-columns: max(5vw, 75px) 1fr 2fr max-content;
  align-items: center;
  line-height: 1.1;
  border-bottom: 1px solid rgba(94, 114, 228, 0.16);
}
.rating-page__itm ul {
  padding: 0 var(--20px);
}
.rating-page__itm._no {
  background: #f6f7f9;
  border-bottom: none;
}
.rating-page__img {
  width: 100%;
}
.rating-page__img img {
  width: 100%;
}
.rating-page__info {
  padding: var(--8px);
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  gap: 4px;
}
.rating-page__info span {
  color: rgba(25, 43, 63, 0.5);
  font-size: var(--12px);
}
.rating-page__text {
  padding: var(--8px);
}
.rating-page__itm._no .rating-page__text {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}
.rating-page__itm._no .rating-page__text span {
  white-space: nowrap;
}

.news-itm {
  display: flex;
  flex-direction: column;
  gap: var(--20px);
  padding-top: var(--20px);
  padding-right: max(40px, 2.5vw);
}
@media (max-width: 1200px) {
  .news-itm {
    padding-right: 0;
  }
}
.news-itm__text {
  display: flex;
  flex-direction: column;
  gap: var(--18px);
  line-height: 1.3;
}
.news-itm__text h3 {
  font-weight: 600;
}
.news-itm__img {
  width: 100%;
}
.news-itm__img img {
  width: 100%;
  border-radius: var(--12px);
}
.news-itm__link {
  display: grid;
  grid-template-columns: 1fr 40px;
}
.news-itm__link a {
  color: inherit;
  display: grid;
  grid-template-columns: max(40px, 2.5vw) 1fr;
  gap: var(--12px);
}
.news-itm__link a:hover {
  text-decoration: underline;
}
.news-itm__link a img {
  width: 100%;
}

.popup::before {
  background: rgba(39, 42, 53, 0.32);
}
.popup__body {
  max-width: max(376px, 26vw);
  box-shadow: 0 8px 12px 6px rgba(110, 119, 130, 0.16), 0 4px 6px -2px rgba(110, 119, 130, 0.26);
  border-radius: var(--12px);
  padding: var(--20px);
}
.popup__close {
  top: var(--20px);
  right: var(--16px);
  padding: 0;
  width: var(--20px);
}
.popup__close svg {
  opacity: 1;
  width: 100%;
}
.popup__title {
  max-width: 80%;
}
.popup__btns {
  display: flex;
  justify-content: end;
  gap: var(--8px);
  padding-top: var(--12px);
  border-top: 1px solid rgba(103, 116, 142, 0.12);
}
.popup__btns button:nth-child(1) {
  background: transparent;
  color: rgba(25, 43, 63, 0.5);
}
.popup form {
  margin-top: max(2.5vw, 35px);
  display: flex;
  flex-direction: column;
  gap: var(--16px);
}
.popup form input {
  background: #f0f2fc;
  width: 100%;
}
.popup form .dropdown {
  width: 100%;
}
.popup form .dropdown svg {
  opacity: 1;
  color: #000;
  width: var(--20px);
}
.popup__doc {
  border-top: 1px solid rgba(103, 116, 142, 0.12);
}
.popup__doc._v2 {
  border: 1px solid rgba(103, 116, 142, 0.12);
  border-radius: var(--8px);
  padding: var(--8px) var(--16px);
}
.popup__doc._v2 label {
  margin-top: 0;
}
.popup__doc input {
  display: none;
}
.popup__doc label {
  cursor: pointer;
  display: grid;
  align-items: center;
  gap: var(--12px);
  grid-template-columns: max(40px, 2.5vw) 1fr var(--14px);
  margin-top: var(--8px);
}
.popup__doc label svg {
  width: 100%;
}
.popup__doc label svg:nth-child(1) {
  width: 70%;
  margin: 0px auto;
}
.popup__doc label svg:nth-child(3) {
  transform: rotate(-90deg);
}
.popup__doc label div {
  display: flex;
  line-height: 1.3;
  flex-direction: column;
}
.popup__doc label div span {
  font-size: var(--12px);
  color: rgba(25, 43, 63, 0.5);
}

.phone-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.country-select {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  user-select: none;
  border: 1px solid #ccc;
  padding: 2px 6px;
  border-radius: 4px;
  background: #fff;
}

.country-select span {
  font-size: 16px;
}

.country-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  margin-top: 2px;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
}

.country-dropdown div {
  padding: 4px 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.country-dropdown div:hover {
  background: #f0f0f0;
}

input.phone {
  flex: 1;
  padding: 4px 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.profile ._btn {
  min-width: max(160px, 11vw);
  width: max-content;
  margin-top: max(40px, 2.7vw);
}
.profile__top {
  margin-bottom: max(30px, 2vw);
}
.profile__block {
  max-width: max(30vw, 436px);
}
.profile__block:not(._active) {
  display: none;
}
.profile__item {
  display: grid;
  grid-template-columns: max(2.7vw, 40px) 1fr 1.5fr;
  gap: var(--16px);
  border-bottom: 1px solid #dfe6ed;
  padding: var(--8px) 0;
  align-items: center;
  line-height: 1.3;
}
.profile__item svg {
  background: rgba(25, 43, 63, 0.1);
  border-radius: var(--8px);
  padding: var(--8px);
  width: 100%;
}
.profile__inf {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.profile__inf span {
  color: rgba(25, 43, 63, 0.5);
  font-size: var(--12px);
}
.profile__form {
  max-width: max(30vw, 436px);
  display: flex;
  flex-direction: column;
  gap: var(--16px);
}
.profile__form:not(._active) {
  display: none;
}
.profile__form ._btn {
  margin-top: 0;
}
.profile__inp {
  background: rgba(135, 147, 169, 0.08);
  border-radius: var(--8px);
  align-items: center;
  display: flex;
  gap: var(--12px);
  padding: 0 var(--14px);
}
.profile__inp svg {
  width: var(--20px);
  flex: 0 0 var(--20px);
  opacity: 1;
}
.profile__inp input {
  width: 100%;
  background: transparent;
  padding: var(--14px) 0;
}
.profile .dropdown {
  width: 100%;
}
.profile .dropdown .dropdown__current {
  background: rgba(135, 147, 169, 0.08);
}
.profile .dropdown .dropdown__current svg {
  width: var(--20px);
}
.profile .phone-wrapper {
  background: rgba(135, 147, 169, 0.08);
  padding: var(--8px) var(--12px);
  border-radius: var(--8px);
}
.profile .phone-wrapper .country-select {
  padding: 0;
  border: none;
}
.profile .phone-wrapper input {
  background: transparent;
  border: none;
  font-size: var(--14px);
}
.profile .phone-wrapper .country-code {
  display: none;
}

.finances ._btn {
  margin-top: 0;
}
.finances__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--8px);
  max-width: max(50vw, 720px);
  margin-bottom: var(--20px);
}
@media (max-width: 600px) {
  .finances__block {
    grid-template-columns: 1fr;
  }
}
.finances__el {
  border: 1px solid rgba(103, 116, 142, 0.16);
  border-radius: var(--12px);
  padding: var(--16px);
}
.finances__el:nth-child(1) {
  background: #ffdf66;
}
.finances__top {
  display: flex;
  justify-content: space-between;
}
.finances__top img {
  width: max(55px, 2.8vw);
}
.finances__top div {
  display: flex;
  gap: var(--8px);
  font-size: var(--20px);
  align-items: center;
  font-weight: 600;
}
.finances__top div svg {
  opacity: 1;
  color: #000;
  width: var(--16px);
}
.finances__head {
  font-weight: 600;
  margin-top: var(--12px);
}
.finances__text {
  margin-top: var(--8px);
}
.finances__btn {
  margin-top: var(--12px) !important;
}
.finances__btn2 {
  margin-top: max(32px, 2.2vw) !important;
}
@media (max-width: 1200px) {
  .finances__table {
    overflow: auto;
    width: 100%;
  }
  .finances__table table {
    width: 900px;
  }
}
.finances__table tbody tr {
  grid-template-columns: 0.5fr 2fr 2.3fr 1fr 2fr 1.5fr;
}
.finances__table tbody tr td:nth-child(4) ul,
.finances__table tbody tr td:nth-child(4) li {
  width: 90%;
  text-align: center;
  margin: 0px auto;
}
.finances__table tbody tr td:nth-child(5) ._btn {
  background: rgba(25, 43, 63, 0.5);
}
.finances__table tbody tr td:nth-child(5) ._btn svg {
  transform: rotate(90deg);
  opacity: 1;
  color: #fff;
}
.finances__table tbody tr td:nth-child(6) {
  gap: var(--20px);
  padding-left: var(--20px);
}
.finances__table tbody tr td:nth-child(6) svg {
  opacity: 1;
}

.registration {
  background: #f7f8ff;
  width: 100%;
  min-height: 100vh;
  padding: 43px;
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .registration {
    padding: 20px;
  }
}
.registration__dec {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  z-index: -1;
}
@media (max-width: 600px) {
  .registration__dec {
    width: 50%;
  }
}
.registration__dec img {
  width: 100%;
}
.registration__form {
  max-width: max(430px, 30vw);
  margin: 0px auto;
  width: 100%;
  background: #fff;
  border-radius: max(30px, 2vw);
  padding: max(35px, 2.3vw);
  display: flex;
  flex-direction: column;
  gap: var(--12px);
}
@media (max-width: 600px) {
  .registration__form {
    padding: 20px;
    border-radius: 20px;
  }
}
.registration__title {
  font-weight: 700;
  font-size: max(35px, 2.3vw);
  text-align: center;
}
@media (max-width: 600px) {
  .registration__title {
    font-size: 30px;
  }
}
.registration__radio {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: var(--20px);
  gap: var(--12px);
  margin-bottom: var(--20px);
}
.registration__radio input {
  display: none;
}
.registration__radio input:checked + label {
  background: #192b3f;
  color: #fff;
}
.registration__radio label {
  text-align: center;
  padding: var(--20px) 0;
  box-shadow: 5px 4px 5px -3px rgba(0, 0, 0, 0.08);
  background: #f7f8ff;
  border-radius: var(--16px);
  color: #5c6772;
  cursor: pointer;
  font-size: var(--20px);
}
.registration__label {
  opacity: 0.6;
}
.registration__tt {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.registration__h {
  display: flex;
  flex-direction: column;
  gap: var(--18px);
}
.registration__h input {
  display: none;
}
.registration__h input:checked + label::before {
  border-color: #e6b911;
  background: #e6b911;
  background-image: url(../img/cec.svg);
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: center;
}
.registration__h label {
  position: relative;
  padding-left: max(30px, 2vw);
  cursor: pointer;
}
.registration__h label::before {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--18px);
  aspect-ratio: 1/1;
  content: "";
  border: max(2.5px, 0.14vw) solid #67748e;
  aspect-ratio: 1/1;
  border-radius: max(0.3vw, 4px);
}
.registration__btn {
  margin-top: var(--20px);
  padding: var(--20px);
  font-size: var(--20px);
}
.registration .phone-wrapper {
  background: rgba(135, 147, 169, 0.08);
  padding: var(--8px) var(--12px);
  border-radius: var(--8px);
  gap: var(--20px);
}
.registration .phone-wrapper .country-select {
  padding: 0;
  border: none;
  position: relative;
}
.registration .phone-wrapper .country-select::before {
  position: absolute;
  top: 0;
  left: 5px;
  transform: translate(100%);
  content: "";
  border-right: 1px solid #808b9c;
  height: 100%;
  background-image: url(../img/Select.svg);
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
  width: var(--20px);
}
.registration .phone-wrapper input {
  background: transparent;
  border: none;
  font-size: var(--14px);
}
.registration .phone-wrapper .country-code {
  display: none;
}

.sing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: #f7f8ff;
}
@media (max-width: 998px) {
  .sing {
    grid-template-columns: 1fr;
  }
}
.sing__left {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: var(--20px);
  background: radial-gradient(105.56% 104.47% at 65.94% 0%, #f6cc2f 0%, #f5e196 47.4%, #eac332 100%);
}
@media (min-width: 998px) {
  .sing__left {
    border-radius: 0 var(--20px) var(--20px) 0;
  }
}
@media (max-width: 998px) {
  .sing__left {
    padding: 50px 20px;
  }
}
.sing__ornam {
  bottom: 0;
  left: 0;
  width: 13%;
  position: absolute;
  z-index: -1;
}
.sing__ornam img {
  width: 100%;
}
.sing__form {
  margin: auto;
  max-width: max(430px, 30vw);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--12px);
}
.sing__form .profile__inp {
  background: #fff;
  border: 1px solid #cad2dd;
  margin-bottom: 10px;
}
.sing__title {
  font-size: max(32px, 2.2vw);
  font-weight: 700;
  text-align: center;
}
.sing__subtitle {
  text-align: center;
  line-height: 1.3;
  margin-top: var(--8px);
  margin-bottom: var(--20px);
}
.sing__cec input {
  display: none;
}
.sing__cec input:checked + label::before {
  background-image: url(../img/crc.svg);
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
}
.sing__cec label {
  padding-left: max(30px, 2vw);
  position: relative;
}
.sing__cec label a {
  color: inherit;
  text-decoration: underline;
}
.sing__cec label::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: max(26px, 1.7vw);
  aspect-ratio: 1/1;
  border: 1px solid #cad2dd;
  border-radius: 2px;
  background: #192b3f;
}
.sing__btn {
  font-size: var(--20px);
  padding: var(--20px);
}
.sing__forget {
  text-align: center;
  text-decoration: underline;
  color: inherit;
  font-size: var(--18px);
  margin-top: var(--12px);
}
.sing__verify {
  margin-top: var(--12px);
  display: flex;
  justify-content: center;
  gap: var(--18px);
}
.sing__verify a {
  width: max(4vw, 56px);
}
.sing__verify a img {
  width: 100%;
}
.sing__right {
  padding: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
  flex-direction: column;
}
@media (max-width: 998px) {
  .sing__right {
    padding: 50px 20px;
  }
}
.sing__wp2 {
  max-width: max(400px, 28vw);
  display: flex;
  flex-direction: column;
  width: 100%;
}
.sing__wp2 h2 {
  font-size: max(45px, 3vw);
}
@media (max-width: 600px) {
  .sing__wp2 h2 {
    font-size: 34px;
  }
}
.sing__wp2 h3 {
  font-size: max(32px, 2.3vw);
  font-weight: 600;
  margin-top: var(--20px);
}
@media (max-width: 600px) {
  .sing__wp2 h3 {
    font-size: 24px;
  }
}
.sing__dec2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  z-index: -1;
}
.sing__dec2 img {
  width: 100%;
}
.sing__txt {
  margin-top: max(40px, 3.1vw);
  line-height: 1.3;
}
.sing__btn2 {
  font-size: var(--20px);
  padding: var(--20px);
  margin-top: max(30px, 2.2vw);
}