:root {
  --Primary-10: #003B73;
  --Primary-20: #004C95;
  --Primary-30: #005EB8;
  --Primary-40: #006FD8;
  --Primary-50: #0095FF;
  --Primary-60: #199FFF;
  --Primary-70: #3FAFFF;
  --Primary-80: #66BFFF;
  --Primary-90: #8FD0FF;
  --Primary-100: #B8E1FF;
  --Gray-10: #3F3F45;
  --Gray-20: #53535A;
  --Gray-30: #65656F;
  --Gray-40: #898990;
  --Gray-50: #A0A1A9;
  --Gray-60: #B4B5BE;
  --Gray-70: #C7C9CF;
  --Gray-80: #DBDDE1;
  --Gray-90: #E6E8EC;
  --Gray-100: #F2F3F5;
  --White: #FFF;
  --Black: #202123;
  --Aside: #E7E8EA;
  --Icons: #6A6A73;
  --Yellow: #FFCC00;
  --Green: #34C759;
  --Red: #FF3B30;
  --Red-error: #FF0034;
  --Scrollbar: #D9D9D9;
}

html {
  scroll-behavior: smooth;
}

.main {
  position: relative;
  margin-left: 250px;
  margin-top: 64px;
  transition: margin-left 0.3s ease;
}
.main_active {
  margin-left: 0;
}

@media (max-width: 1429px) {
  .main {
    margin-left: 0;
  }
}
.container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.container_video {
  max-width: 1240px;
  transition: max-width 0.3s ease;
  overflow-x: hidden;
}
.container_video-active {
  max-width: 1920px;
}
.container_medium {
  max-width: 1090px;
}
.container_small {
  max-width: 726px;
}
.container_extrasmall {
  max-width: 600px;
}

.bg {
  background-color: var(--Gray-100);
}

.title {
  font: 700 40px/48px "Inter", "sans-serif";
  letter-spacing: -0.2px;
  color: var(--Black);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: -moz-max-content;
  width: max-content;
  padding: 15px 23px;
  border-radius: 12px;
  font: 600 16px/24px "Inter", "sans-serif";
  letter-spacing: -0.03em;
  font-size: 15px;
  white-space: nowrap;
}
.btn_h48 {
  padding: 11px 23px;
}
.btn_150 {
  max-width: 150px;
  width: 100%;
}
.btn_160 {
  max-width: 160px;
  width: 100%;
}
.btn_240 {
  max-width: 240px;
  width: 100%;
}
.btn_primary {
  border: 1px solid var(--Primary-40);
  background-color: var(--Primary-40);
  color: var(--White);
  transition: border 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.btn_primary:hover {
  border: 1px solid var(--Primary-30);
  background-color: var(--Primary-30);
}
.btn_primary:active {
  border: 1px solid var(--Primary-20);
  background-color: var(--Primary-20);
}
.btn_secondary {
  border: 1px solid var(--Gray-80);
  background-color: var(--Gray-80);
  color: var(--Black);
  transition: border 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.btn_secondary:hover {
  border: 1px solid var(--Gray-70);
  background-color: var(--Gray-70);
}
.btn_secondary:active {
  border: 1px solid var(--Gray-60);
  background-color: var(--Gray-60);
}
.btn_tertiary {
  border: 1px solid var(--Black);
  color: var(--Black);
  transition: border 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.btn_tertiary path {
  fill: var(--Black);
  transition: fill 0.3s ease;
}
.btn_tertiary:hover {
  border: 1px solid var(--Primary-40);
  background-color: var(--Primary-40);
  color: var(--White);
}
.btn_tertiary:hover path {
  fill: var(--White);
}
.btn_tertiary:active {
  border: 1px solid var(--Primary-30);
  background-color: var(--Primary-30);
  color: var(--White);
}
.btn_quaternary {
  border: 1px solid var(--Primary-40);
  color: var(--Primary-40);
  transition: border 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.btn_quaternary:hover {
  border: 1px solid var(--Primary-40);
  background-color: var(--Primary-40);
  color: var(--White);
}
.btn_quaternary:active {
  border: 1px solid var(--Primary-30);
  background-color: var(--Primary-30);
  color: var(--White);
}
.btn_black {
  padding: 11px;
  border: 0.5px solid var(--Black);
  border-radius: 8px;
  font: 600 14px/20px "Inter", "sans-serif";
  letter-spacing: -0.1px;
  color: var(--Black);
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn_black path {
  stroke: var(--Black);
  transition: stroke 0.3s ease;
}
.btn_black:hover {
  background-color: var(--Black);
  color: var(--White);
}
.btn_black:hover path {
  stroke: var(--White);
}
.btn_white {
  padding: 11px 23px;
  border: 0.5px solid var(--White);
  border-radius: 8px;
  box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.1019607843);
  background-color: var(--White);
  font: 600 14px/20px "Inter", "sans-serif";
  letter-spacing: -0.1px;
  color: var(--Gray-10);
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
}
.btn_white path {
  stroke: var(--Gray-10);
  transition: stroke 0.3s ease;
}
.btn_white-hide {
  display: none;
}
.btn_white:hover {
  border: 0.5px solid var(--Gray-100);
  background-color: var(--Gray-100);
  color: var(--Black);
}
.btn_white:hover path {
  stroke: var(--Black);
}
.btn_white-active {
  border: 0.5px solid var(--Black);
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.2);
  background-color: var(--Black);
  color: var(--White);
}
.btn_white-active path {
  stroke: var(--White);
}
.btn_white-active:hover {
  border: 0.5px solid var(--Gray-10);
  background-color: var(--Gray-10);
  color: var(--White);
}
.btn_white-active:hover path {
  stroke: var(--White);
}
.btn_white-active .btn_white-hide {
  display: block;
}
.btn_blue {
  padding: 11px 23px;
  border: 0.5px solid var(--Primary-40);
  border-radius: 8px;
  background-color: var(--Primary-40);
  font: 600 14px/20px "Inter", "sans-serif";
  letter-spacing: -0.1px;
  color: var(--White);
  transition: background-color 0.3s ease, border 0.3s ease;
}
.btn_blue path {
  stroke: var(--White);
}
.btn_blue:hover {
  border: 0.5px solid var(--Primary-30);
  background-color: var(--Primary-30);
}
.btn_blue:active {
  border: 0.5px solid var(--Primary-20);
  background-color: var(--Primary-20);
}
.btn-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.btn-icon48 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 11px;
}
.btn_center {
  margin: 0 auto;
}
.btn_full {
  width: 100%;
  justify-content: flex-start;
}
.btn:disabled {
  opacity: 0.2;
}
.btn_like-active path {
  stroke: var(--Red);
  fill: var(--Red);
  transition: stroke 0.3s ease, fill 0.3s ease;
}
.btn_like-active:hover path {
  stroke: var(--Red);
  fill: var(--Red);
}
.btn svg {
  flex: 0 0 auto;
}
.btn_small {
  width: 100px;
  height: 32px;
  padding: 6px;
  border-radius: 6px;
  font: 600 13px/20px "Inter", "sans-serif";
  letter-spacing: 0.03em;
}

.link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.link-large {
  font: 500 20px/28px "Inter", "sans-serif";
  text-underline-offset: 3px;
  color: var(--Black);
  cursor: pointer;
}
.link-medium {
  font: 500 14px/21px "Inter", "sans-serif";
  text-align: center;
  text-underline-offset: 3px;
  color: var(--Black);
  cursor: pointer;
}
.link-xsmall {
  font: 500 12px/18px "Inter", "sans-serif";
  text-align: center;
  color: var(--Gray-30);
  cursor: pointer;
}
.link svg {
  flex: 0 0 auto;
}

.total-found {
  position: absolute;
  bottom: -26px;
  display: none;
  align-items: center;
  gap: 4px;
}
.total-found-text {
  font: 400 11px/14px "inter", "sans-serif";
  color: var(--Gray-30);
}
.total-found-number {
  font: 700 11px/16px "Inter", "sans-serif";
  letter-spacing: 0.01em;
  color: var(--Gray-30);
}

.press-right {
  margin-left: auto;
}

.input {
  width: 100%;
  padding: 18px 12px;
  border-radius: 12px;
  background-color: var(--Gray-100);
  font: 400 16px/24px "Inter", "sans-serif";
  letter-spacing: -0.5px;
  color: var(--Black);
  outline: none;
  transition: background-color 0.3s ease;
}
.input__help {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  display: flex;
  flex-direction: column;
  height: 0;
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.2);
  background-color: var(--White);
  overflow: hidden;
  transition: height 0.3s ease;
  z-index: 10;
}
.input__help-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px;
}
.input__help-item:hover {
  background-color: var(--Gray-100);
}
.input__help-title {
  font: 500 14px/20px "Inter", "sans-serif";
  letter-spacing: -0.25px;
  color: var(--Black);
}
.input__help-text {
  font: 400 13px/16px "Inter", "sans-serif";
  letter-spacing: 0;
  color: var(--Gray-20);
}
.input::-moz-placeholder {
  font: 400 13px/16px "Inter", "sans-serif";
  letter-spacing: 0;
  color: var(--Gray-30);
}
.input::placeholder {
  font: 400 13px/16px "Inter", "sans-serif";
  letter-spacing: 0;
  color: var(--Gray-30);
}
.input_number {
  text-align: center;
}
.input:focus {
  background-color: var(--White);
  outline: 2px solid var(--Gray-40);
}
.input:focus ~ .input__help {
  height: 198px;
}

.label {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.label__input {
  padding: 24px 12px 8px;
}
.label__title {
  position: absolute;
  top: 16px;
  left: 12px;
  font: 400 16px/24px "Inter", "sans-serif";
  letter-spacing: -0.5px;
  color: var(--Gray-30);
  transition: top 0.3s ease, font 0.3s ease;
  z-index: 1;
}
.label__title-textarea {
  top: 8px;
}
.label__title-icon {
  left: 44px;
}
.label__textarea {
  width: 100%;
  height: 136px;
  padding: 44px 12px 8px;
  border-radius: 12px;
  background-color: var(--Gray-100);
  font: 400 16px/24px "Inter", "sans-serif";
  letter-spacing: -0.5px;
  color: var(--Black);
  outline: none;
  resize: none;
  transition: padding 0.3s ease;
}
.label__textarea::-moz-placeholder {
  font: 400 14px/20px "Inter", "sans-serif";
  letter-spacing: -0.25px;
}
.label__textarea::placeholder {
  font: 400 14px/20px "Inter", "sans-serif";
  letter-spacing: -0.25px;
}
.label__textarea-big {
  height: 181px;
}
.label__textarea-extrabig {
  height: 361px;
}
.label__text {
  font: 500 12px/16px "Inter", "sans-serif";
  letter-spacing: -0.1px;
  color: var(--Gray-40);
}
.label__flyingtext {
  position: absolute;
  top: 24px;
  left: 24px;
  display: none;
  font: 400 16px/24px "Inter", "sans-serif";
  letter-spacing: -0.5px;
  color: var(--Black);
}
.label__clue {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
}
.label__top {
  position: absolute;
  left: 50%;
  top: -26px;
  font: 400 14px/20px "Inter", "sans-serif";
  letter-spacing: -0.25px;
  color: var(--Gray-10);
  transform: translateX(-50%);
}
.label-active .label__title {
  top: 8px;
  font: 400 13px/16px "Inter", "sans-serif";
  letter-spacing: 0;
}
.label-active .label__textarea {
  padding: 28px 12px 8px;
}
.label-active .label__flyingtext {
  display: block;
}
.label_error-text {
  position: absolute;
  bottom: -16px;
  display: none;
  font: 400 12px/16px "Inter", "sans-serif";
  color: var(--Red-error);
}
.label_error .label__input {
  outline: 2px solid var(--Red-error);
}
.label_error .label_error-text {
  display: block;
}

.textarea {
  width: 100%;
  padding: 20px 12px;
  border-radius: 12px;
  background-color: var(--Gray-100);
  font: 500 14px/20px "Inter", "sans-serif";
  color: var(--Black);
  outline: none;
  resize: none;
}
.textarea::-moz-placeholder {
  font: 400 13px/16px "Inter", "sans-serif";
  letter-spacing: 0;
  color: var(--Gray-30);
}
.textarea::placeholder {
  font: 400 13px/16px "Inter", "sans-serif";
  letter-spacing: 0;
  color: var(--Gray-30);
}
.textarea_adjustment {
  display: -webkit-box;
  height: 50px;
  padding: 7px 10px 7px 10px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 36px;
  overflow: hidden;
  transition: height 0.3s ease, line-height 0.3s ease;
}
.textarea_adjustment::-moz-placeholder {
  line-height: 36px;
}
.textarea_adjustment::placeholder {
  line-height: 36px;
}
.textarea_adjustment-active {
  display: -webkit-box;
  height: 428px;
  line-height: 20px;
  -webkit-line-clamp: 23;
  -webkit-box-orient: vertical;
  overflow: auto;
}
.textarea_adjustment-active.textarea_sotrudnika-line1 {
  height: 384px;
}
.textarea_adjustment-active.textarea_sotrudnika-line2 {
  height: 340px;
}
.textarea_adjustment:focus::-moz-placeholder {
  color: transparent;
}
.textarea_adjustment:focus::placeholder {
  color: transparent;
}

.select {
  position: relative;
}
.select__input {
  background-image: url("../images/icons/chevron_down.png");
  background-position: center right 20px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.select__title {
  position: absolute;
  top: 16px;
  left: 12px;
  font: 400 16px/24px "Inter", "sans-serif";
  letter-spacing: -0.5px;
  color: var(--Gray-30);
  transition: top 0.3s ease, font 0.3s ease;
}
.select__title-active {
  top: 8px;
  font: 400 13px/16px "Inter", "sans-serif";
  letter-spacing: 0;
}
.select_up .select__input {
  padding: 24px 12px 8px;
  font: 400 16px/24px "Inter", "sans-serif";
  letter-spacing: -0.5px;
}
.select__box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 14px;
}
.select__box-vert {
  padding-top: 10px;
  padding-bottom: 10px;
}

.options {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 0;
  margin-top: 10px;
  border-radius: 16px;
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.2);
  background-color: var(--White);
  overflow: hidden;
  transition: height 0.3s ease;
  z-index: 10;
}
.options__wrapper {
  padding: 16px;
}
.options_active {
  height: 176px;
  overflow-y: scroll;
}
.options_active.options_2item {
  height: 128px;
}

.option {
  padding: 14px 12px;
  border-radius: 8px;
  font: 500 14px/20px "Inter", "sans-serif";
  color: var(--Black);
  cursor: pointer;
}
.option:hover {
  background-color: var(--Gray-100);
}

.range {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.range__input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  max-width: 666px;
  width: 100%;
  height: 30px;
  border: none;
  overflow: hidden;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.range__input::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  background-color: var(--Primary-40);
  border-radius: 50%;
  height: 28px;
  width: 28px;
  margin-top: -12px;
  box-shadow: calc(-100vmax - 28px) 0 0 100vmax var(--Primary-40);
  clip-path: polygon(100% 0, 1px 0, 0 12px, -100vmax 12px, -100vmax 18px, 0 18px, 1px 100%, 100% 100%);
}
.range__input::-moz-range-thumb {
  -moz-appearance: none;
       appearance: none;
  background-color: var(--Primary-40);
  border-radius: 50%;
  height: 28px;
  width: 28px;
  margin-top: -12px;
  box-shadow: calc(-100vmax - 28px) 0 0 100vmax var(--Primary-40);
  clip-path: polygon(100% 0, 1px 0, 0 12px, -100vmax 12px, -100vmax 18px, 0 18px, 1px 100%, 100% 100%);
}
.range__input::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.2);
}
.range__input-disabled {
  opacity: 0.2;
}
.range__conclusion {
  position: relative;
}
.range__conclusion-text {
  position: absolute;
  bottom: -20px;
  left: 50%;
  font: 500 12px/16px "Inter", "sans-serif";
  letter-spacing: -0.1px;
  color: var(--Primary-40);
  white-space: nowrap;
  transform: translateX(-50%);
}
.range__conclusion-disabled {
  opacity: 0.2;
}
.range__number {
  width: 85px;
  font: 700 30px/36px "Inter", "sans-serif";
  letter-spacing: -0.1px;
  color: var(--Primary-40);
  text-align: center;
}
.range__text {
  font: 500 12px/16px "Inter", "sans-serif";
  letter-spacing: -0.1px;
  color: var(--Gray-40);
}
.range__explanation {
  display: flex;
  align-items: center;
  gap: 4px;
}

.clue {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  cursor: pointer;
}
.clue__wrapper {
  position: absolute;
  bottom: calc(100% + 4px);
  left: -150px;
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 300px;
  padding: 10px;
  border-radius: 8px;
  background-color: var(--Gray-90);
  z-index: 40;
}
.clue__wrapper-small {
  width: -moz-max-content;
  width: max-content;
  max-width: 300px;
}
.clue__wrapper-bottom {
  top: calc(100% + 4px);
  bottom: auto;
}
.clue__wrapper-active {
  display: flex;
}
.clue__text {
  font: 500 14px/20px "Inter", "sans-serif";
  letter-spacing: -0.25px;
  color: var(--Gray-30);
}
.clue__text-center {
  text-align: center;
}
.clue__list {
  margin-left: 8px;
  padding-left: 16px;
}
.clue__list-item {
  list-style-type: disc;
}
.clue__list-item::marker {
  color: var(--Gray-30);
}
.clue__accounting {
  display: none;
}
.clue__accounting-active {
  display: block;
}

.switch {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 51px;
  height: 31px;
}
.switch__input {
  display: none;
}
.switch__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.switch__slider:before {
  position: absolute;
  content: "";
  height: 27px;
  width: 27px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.3s;
}
.switch__input:checked + .switch__slider {
  background-color: var(--Primary-40);
}
.switch__input:checked + .switch__slider:before {
  transform: translateX(20px);
}
.switch__round {
  border-radius: 25px;
}
.switch__round:before {
  border-radius: 50%;
}

.check__input {
  display: none;
  width: 0;
  opacity: 0;
}
.check__input:checked ~ .check__label .check__check {
  background-color: var(--Black);
  background-image: url(../images/icons/check.png);
}
.check__label {
  display: flex;
  justify-content: start;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.check__check {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border: 1px solid var(--Black);
  border-radius: 4px;
  background-repeat: no-repeat;
  background-position: center center;
  transition: background 0.3s ease;
}
.check__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.check__title {
  margin-top: -2px;
  font: 600 16px/22px "Inter", "sans-serif";
  letter-spacing: -0.1px;
  color: var(--black);
}
.check__text {
  font: 500 14px/20px "Inter", "sans-serif";
  letter-spacing: -0.25px;
  color: var(--Gray-30);
}

.radio__input {
  position: absolute;
  width: 0;
  opacity: 0;
}
.radio__input:checked ~ .radio__label {
  border: 2px solid var(--Primary-40);
}
.radio__input:checked ~ .radio__label .radio__check {
  border: 7px solid var(--Primary-40);
}
.radio__input:checked ~ .radio__label .radio__title {
  color: var(--Primary-40);
}
.radio__label {
  display: grid;
  grid-template-columns: 20px auto;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  padding: 20px 24px;
  border: 2px solid var(--Gray-60);
  border-radius: 8px;
  transition: border 0.3s linear;
}
.radio__check {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--Gray-40);
  border-radius: 50%;
  transition: border 0.3s linear;
}
.radio__title {
  font: 600 16px/22px "Inter", "sans-serif";
  letter-spacing: -0.1px;
  color: var(--Gray-20);
  transition: color 0.3s ease;
}

.tax__radio {
  position: absolute;
  width: 0;
  opacity: 0;
}
.tax__radio:checked ~ .tax__label .tax__check {
  border: 7px solid var(--Black);
}
.tax__label {
  display: grid;
  grid-template-columns: 20px auto;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 4px;
}
.tax__check {
  grid-row: span 2;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 1.5px solid var(--Gray-40);
  border-radius: 50%;
  transition: border 0.3s linear;
}
.tax__title {
  font: 600 16px/22px "Inter", "sans-serif";
  letter-spacing: -0.1px;
  color: var(--Black);
}
.tax__text {
  font: 500 14px/20px "Inter", "sans-serif";
  letter-spacing: -0.25px;
  color: var(--Gray-30);
}

.tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 24px;
}

.tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.2);
  background-color: var(--White);
}
.tab__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: var(--Gray-100);
}
.tab__icon path {
  fill: var(--Icons);
  transition: fill 0.3s ease;
}
.tab__text {
  font: 600 14px/20px "Inter", "sans-serif";
  letter-spacing: -0.1px;
  color: var(--Gray-20);
  text-align: left;
  transition: color 0.3s ease;
}
.tab_active .tab__icon path {
  fill: var(--Primary-40);
}
.tab_active .tab__text {
  color: var(--Primary-40);
}

.tags {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 14px;
}

.tag {
  display: flex;
}
.tag__label {
  padding: 7px 16px 7px 42px;
  border: 1px solid var(--Gray-70);
  border-radius: 18px;
  background-color: var(--Gray-100);
  background-image: url(../images/icons/plus.png);
  background-repeat: no-repeat;
  background-position: left 16px center;
  font: 500 14px/20px "Inter", "sans-serif";
  letter-spacing: -0.25px;
  color: var(--Gray-20);
  transition: all 0.3s ease;
}
.tag__label:hover {
  background-color: var(--Gray-80);
}
.tag__input {
  display: none;
  width: 0;
  opacity: 0;
}
.tag__input:checked ~ .tag__label {
  background-color: var(--Gray-20);
  background-image: url(../images/icons/check.png);
  color: var(--White);
}
.tag__input:checked ~ .tag__label:hover {
  background-color: var(--Gray-20);
}

::-webkit-scrollbar {
  width: 5px;
  background-color: rgba(255, 255, 255, 0);
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: var(--Scrollbar);
}

::-webkit-scrollbar-track {
  margin: 8px 0;
  background-color: rgba(255, 255, 255, 0);
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]:hover,
input[type=number]:focus {
  -moz-appearance: number-input;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#currency {
  padding: 16px 12px;
}

.aside {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  width: 250px;
  height: 100%;
  border-right: 1px solid var(--Aside);
  background-color: var(--Gray-100);
  z-index: 300;
  transition: left 0.3s ease;
}
.aside_off {
  left: -250px;
}
.aside_active {
  left: 0;
}
.aside__logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: -moz-max-content;
  width: max-content;
  margin: 25px auto;
}
.aside__logo-job {
  font: 700 22px/22px "Inter", "sans-serif";
  letter-spacing: -0.2px;
  text-shadow: 3px 3px 3px var(--Neushadow), -3px -3px 3px var(--White);
}
.aside__logo-job-white {
  padding: 4px;
  border-radius: 8px;
  box-shadow: 3px 3px 3px var(--Neushadow), -3px -3px 3px var(--White);
  background-color: var(--Primary-50);
  color: var(--White);
  text-shadow: 3px 3px 3px var(--Black);
}
.aside__logo-r {
  position: absolute;
  top: 0;
  right: -9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 3px 3px 5px 0px #A3B1C6, -3px -3px 5px 0px #FFFFFF;
}
.aside__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-right: 10px;
  padding: 10px;
}
.aside__list-line {
  border-bottom: 1px solid var(--Gray-80);
}
.aside__list-bottom {
  margin-top: auto;
}
.aside__link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 40px;
  padding: 8px 10px;
  border-radius: 10px;
  font: 600 13px/17px "Inter", "sans-serif";
  letter-spacing: 0.03em;
  color: var(--Gray-30);
  transition: background-color 0.3s ease, color 0.3s ease;
}
.aside__link svg {
  flex: 0 0 auto;
}
.aside__link path {
  fill: var(--Icons);
  transition: fill 0.3s ease;
}
.aside__link-active {
  background-color: var(--Aside);
  color: var(--Black);
}
.aside__link-active path {
  fill: var(--Black);
}

@media (max-width: 1429px) {
  .aside {
    left: -250px;
  }
  .aside_active {
    left: 0;
  }
}
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 9px 32px;
  z-index: 200;
}
.header__logo {
  width: 78px;
  height: 30px;
}
.header__line {
  width: 1px;
  height: 32px;
  background-color: var(--Gray-90);
}
.header__access {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1px 17px;
  border: 1px solid var(--Gray-80);
  border-radius: 8px;
}
.header__text {
  font: 500 14px/20px "Inter", "sans-serif";
  color: var(--Black);
}
.header__span {
  font: 500 12px/17px "Inter", "sans-serif";
  color: var(--Gray-40);
}
.header__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--Gray-80);
}
.header__avatar-text {
  font: 500 12px/17px "Inter", "sans-serif";
  color: var(--Black);
}

.bulb path {
  fill: var(--Icons);
}
.bulb_yellow path {
  fill: var(--Yellow);
}
.bulb_green path {
  fill: var(--Green);
}
.bulb_red path {
  fill: var(--Red);
}

.message {
  width: 30px;
}

.bell {
  width: 30px;
}

.notifications {
  position: absolute;
  top: -8px;
  left: 14px;
  min-width: 18px;
  padding: 0 3px;
  border: 1px solid var(--White);
  border-radius: 9px;
  background-color: var(--Primary-50);
}
.notifications__number {
  font: 700 11px/16px "Inter", "sans-serif";
  letter-spacing: 0.01em;
  color: var(--White);
}

.section {
  display: none;
  padding: 10px 16px 24px;
}
.section_active {
  display: block;
}
.section_active.section_toleft {
  display: grid;
}
.section_active.section_collapse {
  display: grid;
}
.section__g24 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section_toleft {
  grid-template-columns: 1090px 48px;
  align-items: end;
  justify-content: center;
  gap: 16px;
  padding: 10px;
  padding-bottom: 24px;
}
.section_toleft-btn {
  position: sticky;
  right: 0;
  bottom: 24px;
  background-color: var(--White);
}
.section__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.section__form-title {
  font: 600 20px/28px "Inter", "sans-serif";
  letter-spacing: -0.2px;
  color: var(--Black);
}
.section__form-subtitle {
  font: 600 16px/22px "Inter", "sans-serif";
  letter-spacing: -0.1px;
  color: var(--Black);
}
.section__form-new-search {
  display: none;
}
.section__tabs {
  display: flex;
  gap: 16px;
}
.section__tab {
  display: none;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}
.section__tab-active {
  display: flex;
}
.section__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.section__head {
  display: flex;
  flex-direction: column;
}
.section__head-top {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px;
}
.section__head-bottom {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-flow: column;
  row-gap: 10px;
  padding: 10px 16px;
}
.section__head-title {
  font: 700 22px/30px "Inter", "sans-serif";
  letter-spacing: 0;
  color: var(--Black);
}
.section__head-subtitle {
  font: 600 14px/20px "Inter", "sans-serif";
  letter-spacing: -0.1px;
  color: var(--Black);
}
.section__head-text {
  font: 500 10px/14px "Inter", "sans-serif";
  letter-spacing: 0;
  color: var(--Gray-40);
}
.section__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  border-radius: 12px;
  background-color: var(--White);
}
.section__wrapper-l50 {
  padding: 7px 32px;
  padding-left: 50px;
}
.section__wrapper-ai {
  gap: 0;
  background-image: url("../images/icons/ai.png");
  background-repeat: no-repeat;
  background-position: top 13px left 13px;
  background-size: 24px 24px;
}
.section__wrapper-h50 {
  height: 50px;
  padding: 7px 20px 7px 50px;
  background-position: top 13px left 13px;
}
.section__select-input {
  padding: 6px 40px 6px 12px;
  font-size: 14px;
}
.section__experiences {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section__experience {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section__experience:nth-child(n+2) {
  padding-top: 24px;
  border-top: 1px solid var(--Gray-90);
}
.section__knowledges-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section__knowledge {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section__knowledge:nth-child(n+3) {
  padding-top: 24px;
  border-top: 1px solid var(--Gray-90);
}
.section__knowledge:last-child {
  margin-bottom: 24px;
}
.section__vakansi {
  position: relative;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 20px;
  border-radius: 12px;
  background-color: var(--White);
}
.section__flexend {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}
.section__plan {
  display: grid;
  grid-template-columns: 1fr 56px 56px;
  gap: 16px;
}
.section__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  width: 56px;
  height: 56px;
  background-color: var(--Gray-100);
}
.section__icon path {
  fill: var(--Black);
}
.section__icon:disabled path {
  fill: var(--Gray-60);
}
.section__icon-icon path {
  fill: var(--Icons);
}
.section__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section__item-withbtn {
  display: grid;
  grid-template-columns: 1fr 56px;
  gap: 0 24px;
}
.section__item-small {
  width: 322px;
}
.section__avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.section__avatar-image {
  width: 160px;
  height: 160px;
  border: 1px solid var(--Aside);
  border-radius: 16px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.section__avatar-logo {
  padding: 20px;
}
.section__avatar-site {
  font: 300 14px/16px "Inter", "sans-serif";
  color: var(--Primary-50);
  text-align: center;
}
.section__status {
  margin-top: 14px;
  padding: 4px 8px;
  border-radius: 16px;
  background-color: rgba(0, 111, 216, 0.1019607843);
  font: 500 10px/14px "Inter", "sans-serif";
  letter-spacing: 0;
}
.section__status-blue {
  color: var(--Primary-40);
}
.section__rezyumes {
  grid-column: span 2;
  padding: 0 16px;
}
.section__rezyume {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px 40px;
  padding: 0 16px;
}
.section__rezyume-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section__rezyume-h2 {
  font: 500 14px/20px "Inter", "sans-serif";
  letter-spacing: -0.25px;
  color: var(--Black);
}
.section__rezyume-h3 {
  font: 600 20px/28px "Inter", "sans-serif";
  letter-spacing: -0.2px;
  color: var(--Black);
}
.section__rezyume-h4 {
  font: 600 16px/22px "Inter", "sans-serif";
  letter-spacing: -0.1px;
  color: var(--Black);
}
.section__rezyume-h5 {
  font: 500 12px/16px "Inter", "sans-serif";
  letter-spacing: -0.1px;
  color: var(--Gray-40);
}
.section__rezyume-text {
  font: 400 16px/24px "Inter", "sans-serif";
  letter-spacing: -0.5px;
  color: var(--Black);
}
.section__show {
  display: none;
}
.section__show-active {
  display: block;
}
.section__show-btn path {
  transition: fill 0.3s ease;
}
.section__show-btn:hover path {
  fill: var(--Red-error);
}
.section__col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.section__tags {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 16px;
       column-gap: 16px;
  max-height: 88px;
  margin-right: -50px;
  overflow: hidden;
}
.section__tags-item {
  padding: 8px 16px;
  border: 1px solid var(--Aside);
  border-radius: 18px;
  font: 500 14px/20px "Inter", "sans-serif";
  letter-spacing: -0.25px;
  color: var(--Gray-20);
}
.section__tags-2 {
  margin-left: -30px;
}
.section__tag {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 20px;
  padding: 4px 8px;
  border-radius: 12px;
  background-color: var(--Gray-100);
}
.section__tag-text {
  font: 500 12px/16px "Inter", "sans-serif";
  letter-spacing: -0.1px;
  color: var(--Black);
}
.section__tag-btn {
  width: 12px;
  height: 12px;
  background-image: url("../images/icons/close.png");
  background-position: center center;
  background-repeat: no-repeat;
}
.section__imgloading {
  display: grid;
  grid-template-columns: 96px auto;
  gap: 24px;
  align-items: center;
}
.section__imgloading-image {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 16px;
}
.section__imgloading-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--Aside);
  border-radius: 16px;
}
.section__imgloading-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.section__imgloading-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section__imgloading-title {
  font: 600 16px/22px "Inter", "sans-serif";
  letter-spacing: -0.1px;
  color: var(--Black);
}
.section__imgloading-text {
  font: 400 13px/16px "Inter", "sans-serif";
  letter-spacing: 0;
  color: var(--Gray-60);
}
.section__imgloading-btn {
  padding: 5px 16px;
  border-radius: 6px;
  background-color: var(--Gray-80);
  font: 600 13px/20px "Inter", "sans-serif";
  letter-spacing: 0.03em;
  color: var(--Black);
}
.section__educations {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section__educations-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section__educations-item:nth-child(n+2) {
  padding-top: 24px;
  border-top: 1px solid var(--Gray-90);
}
.section__education {
  display: none;
  flex-direction: column;
  gap: 24px;
}
.section__education-active {
  display: flex;
}
.section__title {
  font: 600 16px/22px "Inter", "sans-serif";
  letter-spacing: -0.1px;
  color: var(--Black);
}
.section__text {
  font: 500 12px/16px "Inter", "sans-serif";
  letter-spacing: -0.1px;
  color: var(--Gray-40);
}
.section__line {
  display: grid;
  grid-template-columns: 150px 150px 80px;
  gap: 16px;
}
.section__linesmall {
  display: grid;
  grid-template-columns: 150px 150px;
  gap: 16px;
}
.section__linedate {
  display: grid;
  align-items: center;
  grid-template-columns: 200px 120px auto;
  gap: 16px;
}
.section__line50 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.section__footer {
  display: flex;
  justify-content: space-between;
  padding: 0 50px;
}
.section__view {
  position: relative;
  padding: 10px;
  padding-left: 40px;
  padding-right: 40px;
}
.section__view-text {
  display: -webkit-box;
  height: 30px;
  font: 500 14px/20px "Inter", "sans-serif";
  line-height: 30px;
  color: var(--Black);
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.section__view-btn {
  position: absolute;
  right: 10px;
}
.section__view .adjustment {
  top: 15px;
}
.section_collapse {
  position: fixed;
  top: 64px;
  left: 250px;
  right: 0;
  display: none;
  justify-content: center;
  grid-template-columns: 1090px 48px;
  gap: 16px;
  padding-top: 25px;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--Aside);
  background-color: var(--Gray-100);
  z-index: 100;
  transition: left 0.3s ease;
}
.section__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section__main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: margin 0.3s ease;
}
.section__main-active {
  margin-right: 620px;
}
.section__btns {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}
.section__btns-width {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  width: 176px;
  transition: width 0.3s ease;
}
.section__btns-width-active {
  width: 596px;
}
.section__video {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.section__video-player {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-image: url("../images/player.png");
  background-repeat: no-repeat;
  background-position: contain;
  background-size: 100% 100%;
}
.section__video-video {
  width: 100%;
  height: 696px;
}
.section__part {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section__part-upline {
  padding-top: 12px;
  border-top: 1px solid #D9D9D9;
}
.section__part-title {
  display: flex;
  align-items: center;
  gap: 5px;
  font: 600 16px/22px "Inter", "sans-serif";
  letter-spacing: -0.1px;
  color: var(--Gray-20);
}
.section__part-text {
  font: 400 16px/24px "Inter", "sans-serif";
  letter-spacing: -0.5px;
  color: var(--Black);
}
.section__list {
  padding-left: 44px;
}
.section__list-item {
  font: 400 16px/24px "Inter", "sans-serif";
  letter-spacing: -0.5px;
  color: var(--Black);
  list-style: disc;
}
.section__description {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section__description-title {
  padding-right: 60px;
  font: 700 30px/36px "Inter", "sans-serif";
  letter-spacing: -0.1px;
  color: var(--Black);
}
.section__description-info {
  display: flex;
  gap: 6px;
  align-items: center;
}
.section__description-text {
  font: 500 14px/20px "Inter", "sans-serif";
  letter-spacing: -0.25px;
  color: var(--Gray-40);
}
.section__dots {
  position: absolute;
  top: -6px;
  right: 0;
  border: 0.5px solid var(--Black);
  border-radius: 8px;
}
.section__delete path {
  transition: fill 0.3s ease;
}
.section__delete:hover path {
  fill: var(--Red);
}
.section__reset path {
  transition: fill 0.3s ease;
}
.section__reset:hover path {
  fill: var(--Red);
}
.section__or {
  display: flex;
  justify-content: center;
}
.section__or-small {
  display: none;
}
.section_mt {
  margin-top: 428px;
}
.section_mt.section_1line {
  margin-top: 472px;
}
.section_mt.section_2line {
  margin-top: 516px;
}
.section_mt-collapse {
  margin-top: 580px;
}
.section_mt-collapse.section_1line {
  margin-top: 524px;
}
.section_mt-collapse.section_2line {
  margin-top: 568px;
}
.section__back {
  font: 600 15px/20px "Inter", "sans-serif";
  letter-spacing: 0.01em;
}
.section__search {
  padding: 25px 70px 25px 50px;
  background-position-y: 38px;
}
.section__search-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  height: 0;
  margin-top: 0;
  margin-bottom: 0;
  overflow: hidden;
  transition: height 0.3s ease, margin 0.3s ease;
}
.section__search-sotrudnika {
  padding-right: 100px;
}
.section__search-sotrudnika .dropdown {
  right: 55px;
}
.section__search-active .section__search-btns {
  height: 32px;
  margin-top: 30px;
  margin-bottom: 10px;
}
.section__rub {
  font: 600 18px/56px "Inter", "sans-serif";
  color: var(--Gray-10);
}

.adjustment {
  position: absolute;
  top: 40px;
  right: 20px;
}

.dropdown {
  position: absolute;
  top: 38px;
  right: 23px;
}

.drops {
  position: absolute;
  top: 24px;
  right: -113px;
  width: 250px;
  height: 0;
  border-radius: 12px;
  box-shadow: 5px 5px 11px 0px #B6B7B8;
  background-color: var(--White);
  overflow: auto;
  z-index: 100;
  transition: height 0.3s ease;
}
.drops_active {
  height: 160px;
}
.drops__wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 0;
}

.drop {
  height: 32px;
  padding: 0 20px;
  font: 500 16px/32px "Inter", "sans-serif";
  text-align: left;
  cursor: pointer;
}
.drop:hover {
  background-color: var(--Gray-100);
}

.btn-subvideo {
  display: none;
}
.btn-subvideo-active {
  display: flex;
  margin-left: auto;
}
.btn-subvideo path {
  stroke: var(--Black);
}

.datepicker {
  max-width: 322px;
  background-image: url("../images/icons/calendar.png");
  background-position: center right 12px;
  background-repeat: no-repeat;
}

#email {
  padding-left: 44px;
  background-image: url("../images/icons/mail.png");
  background-position: center left 12px;
  background-repeat: no-repeat;
}

#tel {
  padding-left: 44px;
  background-image: url("../images/icons/phone.png");
  background-position: center left 12px;
  background-repeat: no-repeat;
}

@media (max-width: 1429px) {
  .section_collapse {
    left: 0;
  }
}
.subvideo {
  position: absolute;
  top: 0;
  right: -100%;
  bottom: 0;
  flex: 0 0 auto;
  width: 596px;
  height: 83%;
  overflow: hidden;
  transition: right 0.3s ease;
}
.subvideo_active {
  right: 0;
}
.subvideo__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}
.subvideo__top {
  display: flex;
  align-items: center;
  gap: 24px;
}
.subvideo__content {
  display: none;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.1019607843);
  background-color: var(--White);
  overflow: auto;
}
.subvideo__content-active {
  display: flex;
}
.subvideo__content-btn {
  position: absolute;
  bottom: 20px;
  right: 25px;
  display: none;
  background-color: var(--White);
}
.subvideo__content-btn-active {
  display: flex;
}
.subvideo__item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}
.subvideo__item-avatar {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--Gray-80);
}
.subvideo__item-avatar1 {
  background-image: url(../images/strelcova/avatars/strelcova.png);
  background-position: center center;
  background-size: cover;
}
.subvideo__item-avatar2 {
  background-image: url(../images/kuznecov/avatars/kuznecov.png);
  background-position: center center;
  background-size: cover;
}
.subvideo__item-avatar3 {
  background-image: url(../images/korotenko/avatars/korotenko.png);
  background-position: center center;
  background-size: cover;
}
.subvideo__item-avatar4 {
  background-image: url(../images/mihajlova/avatars/mihajlova2.png);
  background-position: center center;
  background-size: cover;
}
.subvideo__item_content {
  display: flex;
  flex-direction: column;
}
.subvideo__item-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.subvideo__item-name {
  font: 500 12px/16px "Inter", "sans-serif";
  letter-spacing: -0.1px;
  color: var(--Gray-20);
}
.subvideo__item-time {
  font: 500 10px/14px "Inter", "sans-serif";
  letter-spacing: 0;
  color: var(--Gray-40);
}
.subvideo__text {
  font: 500 14px/20px "Inter", "sans-serif";
  letter-spacing: -0.25px;
  font-weight: 400;
  color: var(--Black);
}
.subvideo__text span {
  font-weight: 600;
}

@media (max-width: 1023px) {
  .btn-transcription {
    padding: 11px;
  }
  .btn-structuring {
    padding: 11px;
  }
  .btn-subvideo {
    display: flex;
    opacity: 0;
    z-index: -10;
  }
  .btn-subvideo-active {
    opacity: 1;
    z-index: 10;
  }
  .container_video {
    max-width: 1240px;
  }
  .section__main-active {
    margin-right: 0;
  }
  .section__btns {
    display: none;
  }
  .section__description {
    gap: 0;
  }
  .section__description-title {
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
  }
  .section__description-info {
    font: 500 10px/14px "Inter", "sans-serif";
    letter-spacing: 0;
  }
  .section__description-text {
    font-size: 10px;
    line-height: 14px;
  }
  .section__or-small {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .section__dots {
    border: none;
  }
  .subvideo {
    position: relative;
    top: 100%;
    width: 100%;
    right: 0;
    height: 0;
  }
  .subvideo_active {
    height: -moz-max-content;
    height: max-content;
  }
  .subvideo_active .subvideo__content-btn {
    display: flex;
  }
  .subvideo__content {
    overflow: hidden;
  }
  .subvideo__content-btn {
    position: fixed;
    right: 35px;
    bottom: 30px;
  }
}
.portfolios {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.portfolios_big {
  display: flex;
}
.portfolios_small {
  display: none;
}

.portfolio {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 12px;
  box-shadow: 5px 5px 11px 0px #B6B7B8;
  background-color: var(--White);
}
.portfolio__topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px;
}
.portfolio__language {
  flex: 0 0 auto;
  width: 25px;
  height: 17px;
  border: 0.1px solid var(--Gray-80);
  border-radius: 4px;
  overflow: hidden;
}
.portfolio__language img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.portfolio__status {
  width: 160px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(137, 137, 144, 0.1019607843);
  font: 500 10px/14px "Inter", "sans-serif";
  letter-spacing: 0;
  letter-spacing: -0.2px;
  text-align: center;
}
.portfolio__status-green {
  color: var(--Green);
}
.portfolio__status-red {
  color: var(--Red);
}
.portfolio__status-blue {
  color: var(--Primary-40);
}
.portfolio__t {
  position: absolute;
  top: 10px;
  right: 30px;
}
.portfolio__position {
  padding-left: 100px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 5px;
}
.portfolio__position-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 17px;
  padding: 2px;
  border: 0.1px solid var(--White);
  border-radius: 4px;
  background-color: var(--Primary-40);
  font: 700 11px/11px "Inter", "sans-serif";
  color: var(--White);
}
.portfolio__line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 10px;
}
.portfolio__fits {
  padding: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 15px;
  border-radius: 8px;
}
.portfolio__fits path {
  stroke: none;
  transition: fill 0.3s ease;
}
.portfolio__fits:hover path {
  stroke: none;
  fill: var(--White);
}
.portfolio__fits-disabled {
  opacity: 0.2;
}
.portfolio__fits-disabled:hover {
  background-color: var(--White);
  color: var(--Black);
}
.portfolio__fits-disabled:hover path {
  stroke: none;
  fill: var(--Black);
}
.portfolio__fits-success {
  display: none;
}
.portfolio__fits-success path {
  stroke: none;
  fill: var(--White);
}
.portfolio__content {
  display: grid;
  align-items: end;
  grid-template-columns: 160px 274px 585px;
  gap: 6px 25px;
  padding: 20px;
  padding-bottom: 0;
}
.portfolio__contact {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 84px;
  margin-top: auto;
  padding-left: 10px;
}
.portfolio__top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 12px 0;
}
.portfolio__avatar {
  position: relative;
  grid-row: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.portfolio__avatar-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 16px;
  outline: 2px dashed #C7C9CF;
  outline-offset: -2px;
  background-image: url("../images/icons/avatar.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 36px;
}
.portfolio__avatar-img {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 2;
}
.portfolio__avatar-img:hover {
  outline: 2px solid var(--Primary-50);
  outline-offset: -2px;
}
.portfolio__avatar-logo {
  width: 140px;
  height: 140px;
  padding: 16px;
  border-radius: 16px;
  background-color: #fff;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  z-index: 2;
}
.portfolio__avatar-logo:hover {
  outline: 2px solid var(--Primary-50);
  outline-offset: -2px;
}
.portfolio__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font: 700 22px/30px "Inter", "sans-serif";
  letter-spacing: 0;
  color: var(--Black);
}
.portfolio__stitle {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 600 14px/20px "Inter", "sans-serif";
  letter-spacing: -0.1px;
  color: var(--Black);
}
.portfolio__tel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  height: 18px;
  font: 500 12px/18px "inter", "sans-serif";
  color: var(--Black);
  white-space: nowrap;
}
.portfolio__tel-copy {
  flex: 0 0 auto;
  opacity: 0;
}
.portfolio__tel:hover .portfolio__tel-copy {
  opacity: 1;
}
.portfolio__text {
  font: 500 10px/14px "Inter", "sans-serif";
  letter-spacing: 0;
  color: var(--Gray-40);
}
.portfolio__main {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}
.portfolio__main-mr {
  margin-right: -150px;
}
.portfolio__center {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  height: 100%;
}
.portfolio__center-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.portfolio__info {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.portfolio__info-title {
  font: 700 40px/48px "Inter", "sans-serif";
  letter-spacing: -0.2px;
  color: var(--Primary-40);
}
.portfolio__info-text {
  font: 500 10px/14px "Inter", "sans-serif";
  letter-spacing: 0;
  color: var(--Gray-40);
}
.portfolio__row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 16px;
}
.portfolio__row-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio__col {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.portfolio__col1 {
  position: relative;
  display: grid;
  grid-template-rows: 1fr 1fr;
  align-items: end;
  gap: 2px;
  height: 100%;
}
.portfolio__btns {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15.5px 20px;
  border-top: 1px solid var(--Gray-80);
}
.portfolio__btns-bl {
  width: 1px;
  height: 48px;
  border-right: 1px solid var(--Gray-80);
}
.portfolio__ai {
  display: flex;
  align-items: center;
  justify-content: center;
  font: 700 20px/22px "inter", "sans-serif";
  letter-spacing: -0.2px;
  color: var(--Primary-40);
}
.portfolio__loader {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/loading.png");
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
}
.portfolio__loader-loading {
  opacity: 1;
  animation: rotation 5s linear infinite;
}
.portfolio__loader-success {
  border: 1.5px solid var(--Primary-40);
  border-radius: 50%;
  background-image: url("../images/icons/success.png");
  opacity: 1;
}
.portfolio__view {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 16px;
}
.portfolio__invite {
  width: 100%;
  padding: 11px;
}
.portfolio__invite svg {
  flex: 0 0 auto;
}
.portfolio .portfolio__slider {
  grid-row: span 3;
}
.portfolio .portfolio__slider .itc-slider {
  position: relative;
}
.portfolio .portfolio__slider .itc-slider-wrapper {
  overflow: hidden;
}
.portfolio .portfolio__slider .itc-slider-items {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}
.portfolio .portfolio__slider .itc-slider-transition-none {
  transition: none;
}
.portfolio .portfolio__slider .itc-slider-item {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  width: 302px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  will-change: transform;
}
.portfolio .portfolio__slider .itc-slider-media {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 302px;
  height: 170px;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  z-index: 2;
}
.portfolio .portfolio__slider .itc-slider-media:hover {
  outline: 2px solid var(--Primary-50);
}
.portfolio .portfolio__slider .itc-slider-bg {
  width: 302px;
  height: 170px;
  margin-top: 2px;
  margin-left: 2px;
  border: 1px dashed #C7C9CF;
  border-radius: 16px;
  background-image: url(../images/icons/add_video.png);
  background-position: center center;
  background-size: 48px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.portfolio .portfolio__slider .itc-slider-bottom {
  height: 58px;
}
.portfolio .portfolio__slider .itc-slider-video {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.portfolio .portfolio__slider .itc-slider-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 28px;
  background-image: url("../images/icons/play.png");
  background-repeat: no-repeat;
  background-position: center center;
  transform: translate3d(-50%, -50%, 0);
  z-index: 3;
}
.portfolio .portfolio__slider .itc-slider-time {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 20px;
  border-radius: 6px;
  background: #8A8E96;
  font: 600 10px/14px "Inter", "sans-serif";
  color: #fff;
  z-index: 3;
}
.portfolio .portfolio__slider .itc-slider-img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}
.portfolio .portfolio__slider .itc-slider-bottom {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.portfolio .portfolio__slider .itc-slider-title {
  position: relative;
  padding-right: 20px;
  font: 600 14px/20px "Inter", "sans-serif";
  letter-spacing: -0.1px;
  color: #202123;
}
.portfolio .portfolio__slider .itc-slider-dots {
  position: absolute;
  top: 0;
  right: 0;
}
.portfolio .portfolio__slider .itc-slider-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
}
.portfolio .portfolio__slider .itc-slider-text {
  font: 500 10px/14px "Inter", "sans-serif";
  color: var(--Gray-40);
}
.portfolio .portfolio__slider .itc-slider-btn {
  position: absolute;
  top: 67px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2509803922);
  background-color: #fff;
  cursor: pointer;
}
.portfolio .portfolio__slider .itc-slider-btn-hide {
  display: none;
}
.portfolio .portfolio__slider .itc-slider-btn-prev {
  left: 1px;
}
.portfolio .portfolio__slider .itc-slider-btn-next {
  right: 1px;
}
.portfolio .portfolio__slider .itc-slider-btn::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}
.portfolio .portfolio__slider .itc-slider-btn-prev::before {
  background-image: url("../images/icons/chevron_left.png");
}
.portfolio .portfolio__slider .itc-slider-btn-next::before {
  background-image: url("../images/icons/chevron_right.png");
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  background: rgba(0, 0, 0, 0.6980392157);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  z-index: 1000;
}
.modal_active {
  display: flex;
}
.modal__wrapper {
  position: absolute;
  top: 30px;
  left: 50%;
  display: none;
  flex-direction: column;
  max-width: 1250px;
  min-width: 370px;
  width: calc(100vw - 20px);
  max-height: 1000px;
  height: calc(100vh - 60px);
  padding: 20px;
  border-radius: 12px;
  background-color: var(--White);
  transform: translate3d(-50%, 0, 0);
}
.modal__wrapper-active {
  display: flex;
}
.modal__wrapper-avatar {
  top: 50%;
  gap: 10px;
  width: 540px;
  height: 550px;
  padding: 10px 40px 40px;
  transform: translate3d(-50%, -50%, 0);
}
.modal__wrapper-avatar .modal__top {
  height: 30px;
}
.modal__wrapper-avatar .modal__close {
  top: 10px;
  right: 10px;
}
.modal__top {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal__name {
  font: 700 22px/30px "Inter", "sans-serif";
  letter-spacing: 0;
  color: var(--Black);
  text-align: center;
}
.modal__avatar {
  position: relative;
  width: 460px;
  height: 460px;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.modal__avatar-img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.modal__avatar-logo {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: var(--White);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.modal__avatar-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border: 2px dashed var(--Gray-70);
  border-radius: 16px;
  background-image: url("../images/icons/avatar.png");
  background-position: center center;
  background-repeat: no-repeat;
}
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 35px;
  height: 35px;
  border-radius: 12px;
  background-color: #F2F3F7;
  background-image: url("../images/icons/close_24.png");
  background-position: center center;
  background-repeat: no-repeat;
}
.modal__die {
  position: absolute;
  top: 0;
  right: 64px;
  border-radius: 0 0 16px 16px;
  background: #E0E5EC;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 18px 10px;
  font: 700 16px/24px "Inter", "sans-serif";
  color: var(--Black);
}
.modal__content {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  scroll-behavior: smooth;
}
.modal__content-btn {
  position: fixed;
  bottom: 0px;
  right: -75px;
  display: none;
  background-color: var(--White);
  z-index: 2000;
}
.modal__content-btn-active {
  display: flex;
}
.modal__tags {
  display: none;
}
.modal__tag {
  min-width: 90px;
  padding: 2px 5px;
  border: 1px solid var(--Gray-90);
  border-radius: 10px;
  font: 500 9px/16px "Inter", "sans-serif";
  letter-spacing: -0.25px;
  color: var(--Gray-20);
  text-align: center;
}
.modal__contacts {
  display: none;
}
.modal__center {
  display: none;
}
.modal__letter {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px;
  padding-right: 5px;
  border-bottom: 1px solid var(--Aside);
}
.modal__letter-title {
  font: 500 14px/20px "Inter", "sans-serif";
  color: var(--Black);
}
.modal__chapter {
  display: flex;
  flex-direction: column;
}
.modal__chapter-top {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px;
  padding-right: 5px;
  border-top: 1px solid var(--Aside);
  border-bottom: 1px solid var(--Aside);
}
.modal__chapter-title {
  font: 500 15px/24px "Inter", "sans-serif";
  color: var(--Gray-20);
}
.modal__chapter-item {
  display: grid;
  grid-template-columns: 180px auto;
  gap: 20px 25px;
  padding: 10px;
  padding-right: 5px;
  border-bottom: 1px solid var(--Aside);
}
.modal__chapter-item:last-child {
  border-bottom: none;
}
.modal__chapter-g20 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal__chapter-organization {
  display: flex;
  flex-direction: column;
}
.modal__chapter-mb {
  margin-bottom: 10px;
}
.modal__chapter-time {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 4px;
}
.modal__chapter-subtitle {
  font: 600 14px/20px "Inter", "sans-serif";
  color: var(--Black);
}
.modal__chapter-subtext {
  font: 500 12px/14px "Inter", "sans-serif";
  color: var(--Gray-40);
}
.modal__chapter-jobtitle {
  font: 600 20px/22px "Inter", "sans-serif";
  color: var(--Black);
}
.modal__suitable {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px;
}
.modal__suitable-title {
  font: 500 14px/20px "Inter", "sans-serif";
  color: var(--Black);
}
.modal__text {
  font: 400 14px/20px "Inter", "sans-serif";
  color: var(--Black);
}
.modal__addcommvent {
  padding: 35px 10px;
  font: 400 14px/22px "Inter", "sans-serif";
  color: var(--Black);
}
.modal__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal__grid {
  display: grid;
  grid-template-columns: repeat(4, 242px);
  justify-content: space-between;
  align-items: center;
  row-gap: 40px;
  -moz-column-gap: 40px;
       column-gap: 40px;
  padding: 30px 10px;
}
.modal__item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.modal__item-img {
  flex: 0 0 auto;
  width: 242px;
  height: 242px;
  border-radius: 16px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}
.modal__item-text {
  display: -webkit-box;
  font: 400 16px/24px "Inter", "sans-serif";
  color: var(--Black);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.modal__line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 32px;
}
.modal__comments {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 0;
}
.modal__comment {
  position: relative;
  min-height: 80px;
  padding: 16px 18px;
  border-radius: 12px;
  font: 500 14px/20px "Inter", "sans-serif";
  color: var(--Black);
}
.modal__comment-btns {
  position: absolute;
  top: 50%;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal__comment-time {
  margin-top: -9px;
  font: 500 10px/14px "Inter", "sans-serif";
  letter-spacing: 0;
  color: var(--Gray-40);
  text-align: right;
}
.modal__comment-content {
  min-height: 54px;
  padding: 5px 8px;
  border-radius: 8px;
  background-color: var(--Gray-100);
}
.modal__comment-content:hover .modal__comment-btns {
  opacity: 1;
}
.modal__comment-text {
  font: 400 14px/18px "Inter", "sans-serif";
}
.modal__topfix {
  display: grid;
  grid-template-columns: 50px auto;
  gap: 8px 10px;
  padding: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--Aside);
}
.modal__topfix-img {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  overflow: hidden;
}
.modal__topfix-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal__topfix-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2px;
}
.modal__topfix-info2 {
  gap: 8px;
}
.modal__topfix-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 700 14px/14px "Inter", "sans-serif";
  color: var(--Black);
}
.modal__topfix-sex {
  font: 500 10px/10px "Inter", "sans-serif";
  color: var(--Gray-40);
}
.modal__topfix-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal__topfix .portfolio__status {
  width: 135px;
  height: 17px;
}
.modal__topfix .modal__status2 {
  position: absolute;
  top: 90px;
  left: 17px;
  width: 67px;
}
.modal__topfix-hide {
  display: none;
}
.modal__head {
  display: grid;
  grid-template-columns: 160px auto 230px 130px 200px;
  gap: 20px 10px;
  padding: 10px;
}
.modal__head-img {
  grid-row: span 3;
  width: 160px;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
}
.modal__head-logo {
  grid-row: span 3;
  width: 160px;
  height: 160px;
  padding: 15px;
  border-radius: 16px;
  overflow: hidden;
}
.modal__head-top {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.modal__head-title {
  font: 600 12px/16px "Inter", "sans-serif";
  color: var(--Black);
}
.modal__head-subtext {
  position: absolute;
  bottom: -10px;
  font: 500 8px/10px "Inter", "sans-serif";
  color: var(--Black);
}
.modal__head-contacts {
  grid-row: span 2;
  justify-content: flex-end;
}
.modal__head-tags {
  grid-column: span 4;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.modal__head-tag {
  padding: 6px 16px;
  border: 1px solid var(--Gray-90);
  border-radius: 18px;
  font: 500 10px/10px "Inter", "sans-serif";
  color: var(--Gray-20);
}
.modal__author {
  display: flex;
  gap: 5px;
  align-items: center;
}
.modal__author-avatar {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--Aside);
  border-radius: 50%;
  overflow: hidden;
}
.modal__author-text {
  height: 14px;
  font: 600 10px/14px "Inter", "sans-serif";
  color: var(--Black);
}
.modal__footer {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: auto;
  padding-top: 30px;
}
.modal__small {
  display: none;
}
.modal__status2 .portfolio__status {
  width: 100%;
  border-radius: 8px;
  font-size: 9px;
}
.modal .link-medium {
  text-decoration: underline;
}
.modal .section__vakansi {
  padding: 0;
}

@media (max-height: 699px) {
  .modal {
    overflow-y: auto;
  }
  .modal__wrapper {
    top: 10px;
    transform: translate3d(-50%, 0, 0);
  }
  .modal__wrapper-avatar {
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
  }
}
@media (max-height: 574px) {
  .modal__wrapper-avatar {
    top: 0;
    transform: translate3d(-50%, 0, 0);
  }
}
@media (max-width: 1429px) {
  .modal__content-btn {
    bottom: 100px;
    right: 25px;
  }
}
@media (max-width: 1200px) {
  .modal__head {
    grid-template-columns: 160px auto 155px 140px 160px;
  }
  .modal__grid {
    grid-template-columns: repeat(3, 242px);
  }
}
@media (max-width: 899px) {
  .modal__wrapper {
    top: 10px;
    height: calc(100vh - 20px);
    padding: 0;
  }
  .modal__wrapper-avatar {
    top: 50%;
    width: 370px;
    height: 400px;
    padding: 10px 20px 20px;
    transform: translate3d(-50%, -50%, 0);
  }
  .modal__close {
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    background-size: 16px;
  }
  .modal__die {
    position: static;
    grid-column: span 2;
    display: flex;
    padding: 0;
    border-radius: none;
    background: none;
  }
  .modal__head-subtext {
    right: 0;
    bottom: 100%;
    transform: translate3d(0, 100%, 0);
  }
  .modal__avatar {
    width: 330px;
    height: 330px;
  }
  .modal__name {
    font-size: 14px;
  }
  .modal__grid {
    justify-content: center;
    grid-template-columns: repeat(2, 150px);
    row-gap: 18px;
    -moz-column-gap: 30px;
         column-gap: 30px;
    padding: 10px;
  }
  .modal__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 5px;
    padding: 10px;
    padding-right: 5px;
    border-bottom: 1px solid var(--Aside);
  }
  .modal__item-img {
    width: 150px;
    height: 150px;
  }
  .modal__item-text {
    font: 400 10px/14px "Inter", "sans-serif";
  }
  .modal__head {
    display: none;
  }
  .modal__head-tag {
    padding: 6px;
  }
  .modal__content-btn {
    bottom: 80px;
    right: 10px;
  }
  .modal__addcommvent {
    padding: 22px 10px;
  }
  .modal__comments {
    padding: 10px;
  }
  .modal__comment {
    padding: 0;
  }
  .modal__comment-content {
    min-height: 80px;
  }
  .modal__contacts {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 10px;
    padding-right: 5px;
    border-bottom: 1px solid var(--Aside);
  }
  .modal__center {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    padding-right: 5px;
    border-bottom: 1px solid var(--Aside);
  }
  .modal__chapter-item {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .modal__chapter-subtitle {
    font: 600 12px/20px "Inter", "sans-serif";
  }
  .modal__chapter-subtext {
    font: 500 10px/14px "Inter", "sans-serif";
  }
  .modal__chapter-jobtitle {
    font: 600 14px/22px "Inter", "sans-serif";
  }
  .modal__topfix-hide {
    display: grid;
  }
  .modal__topfix .modal__status2 {
    position: absolute;
    top: 67px;
    left: 7px;
    width: 57px;
  }
  .modal__footer {
    gap: 10px;
    padding: 10px;
  }
  .modal__footer .btn_blue {
    width: 100%;
    max-width: 200px;
  }
  .modal .portfolio__language {
    position: absolute;
    right: 5px;
    top: 40px;
  }
}
@media (max-width: 499px) {
  .modal__footer {
    justify-content: center;
  }
  .modal__footer .press-right {
    display: none;
  }
}
.modal-slider {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}
.modal-slider-active {
  display: block;
}
.modal-slider__img {
  position: relative;
  width: 100%;
  height: 100%;
}
.modal-slider .itc-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.modal-slider .itc-slider-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.modal-slider .itc-slider-items {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  will-change: transform;
}
.modal-slider .itc-slider-transition-none {
  transition: none;
}
.modal-slider .itc-slider-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 0 0 100%;
  max-width: 100%;
  max-height: 100%;
  padding: 80px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  will-change: transform;
}
.modal-slider__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3019607843);
  z-index: 1010;
}
.modal-slider__top {
  position: absolute;
  top: 0;
  left: 50%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  transform: translateX(-50%);
  z-index: 1010;
}
.modal-slider-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
}
.modal-slider-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.modal-slider-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  font: 500 12px/14px "Inter", "sans-serif";
  color: var(--White);
  text-align: center;
}
.modal-slider .itc-slider-btn {
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2509803922);
  background-color: rgba(0, 0, 0, 0.3019607843);
  transform: translateY(-50%);
  cursor: pointer;
}
.modal-slider .itc-slider-btn-hide {
  display: none;
}
.modal-slider .itc-slider-btn-prev {
  left: 16px;
}
.modal-slider .itc-slider-btn-next {
  right: 16px;
}
.modal-slider .itc-slider-btn::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}
.modal-slider .itc-slider-btn-prev::before {
  background-image: url("../images/icons/chevron_left-white.png");
}
.modal-slider .itc-slider-btn-next::before {
  background-image: url("../images/icons/chevron_right-white.png");
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 1200px) {
  .btn_150 {
    flex: 0 0 48px;
  }
  .header {
    padding: 9px 16px;
  }
  .range__explanation {
    flex: 0 0 auto;
  }
  .range__text {
    display: none;
  }
  .section_collapse {
    grid-template-columns: 800px 48px;
  }
  .section_toleft {
    grid-template-columns: 800px 48px;
  }
  .portfolio__title {
    font-size: 18px;
    line-height: 24px;
  }
  .portfolio__position {
    right: 20px;
  }
  .portfolio__top {
    margin-top: 30px;
  }
  .portfolio__show {
    display: none;
  }
  .portfolio__content {
    grid-template-columns: 160px 274px 302px;
    gap: 6px 21px;
  }
  .portfolio__contact {
    align-items: start;
  }
}
@media (max-width: 899px) {
  .title {
    font-size: 26px;
    line-height: 30px;
  }
  .btn_150 {
    width: 48px;
  }
  .range {
    gap: 15px;
    padding: 0;
  }
  .range .clue__wrapper {
    left: -210px;
  }
  .range__input {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    max-width: 666px;
    width: 100%;
    height: 30px;
    border: none;
    overflow: hidden;
    transition: opacity 0.3s ease;
    cursor: pointer;
  }
  .range__input::-webkit-slider-thumb {
    height: 18px;
    width: 18px;
    margin-top: -7px;
    box-shadow: calc(-100vmax - 18px) 0 0 100vmax var(--Primary-40);
    clip-path: polygon(100% 0, 1px 0, 0 7px, -100vmax 7px, -100vmax 13px, 0 13px, 1px 100%, 100% 100%);
  }
  .range__input::-moz-range-thumb {
    height: 18px;
    width: 18px;
    margin-top: -7px;
    box-shadow: calc(-100vmax - 18px) 0 0 100vmax var(--Primary-40);
    clip-path: polygon(100% 0, 1px 0, 0 7px, -100vmax 7px, -100vmax 13px, 0 13px, 1px 100%, 100% 100%);
  }
  .range__number {
    width: 60px;
    font-size: 20px;
  }
  .switch {
    width: 45px;
    height: 24px;
  }
  .switch__slider {
    width: 45px;
    height: 24px;
  }
  .switch__slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
  }
  .link__show {
    display: none;
  }
  .header {
    gap: 16px;
    padding: 9px 10px;
  }
  .header__logo {
    display: none;
  }
  .header__name {
    display: none;
  }
  .header__access {
    display: none;
  }
  .section {
    padding: 10px 10px 20px;
  }
  .section__wrapper {
    gap: 10px;
    padding: 10px;
  }
  .section__wrapper-ai {
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 50px;
    background-position: top 20px left 13px;
  }
  .section__wrapper-l50 {
    gap: 0;
    padding-left: 50px;
  }
  .section__wrapper-range {
    background-position: top 13px left 13px;
  }
  .section__wrapper-h50 {
    background-position: top 13px left 13px;
  }
  .section_mt {
    margin-top: 328px;
  }
  .section_mt .section_1line {
    margin-top: 348px;
  }
  .section_mt .section_2line {
    margin-top: 392px;
  }
  .section_mt-collapse {
    margin-top: 408px;
  }
  .section_mt-collapse .section_1line {
    margin-top: 441px;
  }
  .section_mt-collapse .section_2line {
    margin-top: 485px;
  }
  .section__form {
    gap: 10px;
  }
  .section__tags {
    max-height: 68px;
    margin-left: -30px;
    margin-right: -80px;
  }
  .section__tag {
    margin-top: 10px;
  }
  .section__top {
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
  }
  .section__top .link {
    margin-left: auto;
    margin-right: 10px;
  }
  .section_collapse {
    grid-template-columns: 370px;
    padding: 10px;
    padding-bottom: 25px;
  }
  .section_toleft {
    grid-template-columns: 370px;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .section_toleft-btn {
    position: fixed;
    bottom: 20px;
    right: 16px;
    background-color: var(--White);
  }
  .section__select-input {
    padding: 7px 40px 7px 10px;
    background-position: center right 10px;
    font-size: 13px;
    line-height: 16px;
  }
  .section__footer {
    margin-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .section__search {
    gap: 0;
    padding: 10px 70px 10px 50px;
    background-position-y: 23px;
  }
  .section__search-sotrudnika {
    padding-right: 100px;
  }
  .section__search-active .section__search-btns {
    margin-bottom: 0;
    margin-top: 10px;
  }
  .dropdown {
    top: 23px;
  }
  .drops {
    right: -16px;
  }
  .adjustment {
    top: 23px;
  }
  .textarea_adjustment-active {
    height: 380px;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px;
  }
  .portfolios {
    gap: 20px;
  }
  .portfolios_big {
    display: none;
  }
  .portfolios_small {
    display: flex;
  }
  .portfolio {
    gap: 0;
  }
  .portfolio__position {
    position: static;
    padding-left: 0;
  }
  .portfolio__content {
    align-items: start;
    grid-template-columns: 150px 190px;
    gap: 6px 10px;
    padding: 10px;
    border-top: 1px solid var(--Aside);
  }
  .portfolio__contact {
    height: -moz-max-content;
    height: max-content;
    padding-left: 0;
    gap: 2px;
  }
  .portfolio__title {
    line-height: 22px;
  }
  .portfolio__avatar {
    grid-row: span 2;
    width: 150px;
    height: 150px;
  }
  .portfolio__avatar-img {
    width: 150px;
    height: 150px;
  }
  .portfolio__avatar-logo {
    width: 150px;
    height: 150px;
  }
  .portfolio__tel {
    height: -moz-max-content;
    height: max-content;
    line-height: 14px;
  }
  .portfolio__main-mr {
    margin-right: 0;
  }
  .portfolio__top {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
  }
  .portfolio__info {
    grid-row: span 1;
    width: 150px;
    margin: 0 auto;
  }
  .portfolio__status {
    width: 135px;
    height: 17px;
  }
  .portfolio__status2 {
    width: 90px;
    height: 17px;
  }
  .portfolio__center {
    grid-row: span 1;
    grid-column: span 2;
    gap: 26px;
    padding: 10px;
    border-bottom: 1px solid var(--Aside);
  }
  .portfolio__center-line {
    display: grid;
    grid-template-columns: 2fr 1fr;
  }
  .portfolio__center-line2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .portfolio__center-line3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 10px;
  }
  .portfolio__center-line3 .modal__head-subtext {
    bottom: 0;
    right: auto;
  }
  .portfolio__stitle {
    font: 600 12px/16px "Inter", "sans-serif";
  }
  .portfolio__loader {
    margin: 0 auto;
  }
  .portfolio__invite {
    width: 160px;
    margin-left: auto;
    padding: 11px;
  }
  .portfolio__btns {
    gap: 15px;
    padding: 10px;
  }
  .portfolio__btns-bl {
    display: none;
  }
  .portfolio .portfolio__slider {
    grid-column: span 2;
    margin-right: -9px;
    padding: 10px;
  }
  .portfolio .portfolio__slider .itc-slider-title {
    font-size: 12px;
  }
  .portfolio .portfolio__slider .itc-slider-bottom {
    height: -moz-max-content;
    height: max-content;
  }
  .modal-slider__top {
    height: 60px;
  }
  .modal-slider__close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
  .modal-slider-btn {
    width: 40px;
    height: 40px;
  }
  .modal-slider .itc-slider-item {
    padding: 60px;
  }
  .modal-slider .itc-slider-btn {
    width: 40px;
    height: 40px;
  }
  .modal-slider .itc-slider-btn-prev {
    left: 10px;
  }
  .modal-slider .itc-slider-btn-next {
    right: 10px;
  }
  .total-found {
    bottom: -21px;
  }
}
.logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
.logo__job {
  margin: 0;
  font: 700 22px/22px "Inter", "sans-serif";
  letter-spacing: -0.2px;
  text-shadow: 3px 3px 3px #A3B1C6, -3px -3px 3px #FFFFFF;
}
.logo__job-white {
  padding: 4px;
  border-radius: 8px;
  box-shadow: 3px 3px 3px #A3B1C6, -3px -3px 3px #FFF;
  background-color: #0095FF;
  color: #fff;
  text-shadow: 3px 3px 3px #1E1E1E;
}
.logo__r {
  position: absolute;
  top: 0;
  right: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  border: 0.5px solid #000000;
  border-radius: 50%;
}
.logo__r-text {
  font: 700 8px/8px "Inter", "sans-serif";
  color: #000;
}/*# sourceMappingURL=najti.css.map */