@font-face {
  font-family: "Nunito";
  src: local("Nunito Regular"), local("Nunito-Regular"),
    url("../fonts/Nunito-Regular.woff2") format("woff2"),
    url("../fonts/Nunito-Regular.woff") format("woff");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Nunito";
  src: local("Nunito ExtraBold"), local("Nunito-ExtraBold"),
    url("../fonts/Nunito-ExtraBold.woff") format("woff");
  font-display: swap;
  font-weight: 800;
  font-style: normal;
}

/* reset styles */
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* Сброс стандартного оформления чекбокса */
input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    /* базовые стили для кастомного оформления */
}
.content-body a {
  font-weight: 800;
  color: rgb(50 158 185);
  text-decoration: underline;
  white-space: nowrap;
}

.content-body ul,
.content-body ol {
  padding-left: 40px;
  margin-bottom: 40px;
}

.content-body ul:last-child,
.content-body ol:last-child {
  margin-bottom: 40px;
}
.errors-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.errors-block p {
	background: #cb4444;
    color: #fff;
    padding: 9px;
    border-radius: 4px;
}
.content-body ul li {
  list-style: initial;
  font-size: 18px;
  line-height: 160%;
  color: #6a777d;
  margin-bottom: 20px;
  padding-left: 10px;
}

.content-body ol li {
  font-size: 18px;
  line-height: 160%;
  color: #6a777d;
  margin-bottom: 20px;
  padding-left: 10px;
}
.user-card__email {
    color: #7e7e7e;
}
.user-card__left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.content-body ul li:last-child,
.content-body ol li:last-child {
  margin-bottom: 0;
}

.content-body ul li::marker {
  width: 8px;
  height: 8px;
  color: rgb(21 94 171);
}

.content-body ol li::marker {
  font-weight: 800;
  font-size: 18px;
  line-height: 160%;
  color: rgb(21 94 171);
}
.lk__role {
    color: rgb(135 135 135);
}
.lk__username {
	color: rgb(50 158 185);
    font-size: 18px;
}
/* Стили для состояния "отмечено" */
input[type="checkbox"]:checked {
    /* стили для выбранного состояния */
}

/* Стили для состояния "отключено" */
input[type="checkbox"]:disabled {
    /* стили для отключённого состояния */
}
:focus,
:active {
  outline: none;
}

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

input[type=file] {
	position: absolute;
	z-index: -1;
	opacity: 0;
	display: block;
	width: 0;
	height: 0;
}

input[type="checkbox"] {
    appearance: none;
    width: 1rem;
    height: 1rem;
    border: 1px solid red;
    border-radius: 0.25rem;
    background-color: #fff;
    cursor: pointer;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin: 0;
}
input[type="checkbox"]:checked {
    background: #fff;
    border: 1px solid #4991ac;
    background-image: url("/assets/images/check2.svg");
	background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;
}

input[type="checkbox"]:active {
    filter: brightness(90%);
}
.agree-popup {
    background: #000000cf;
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
	transition: all .4s;
	opacity: 0;
}
.agree-popup.active {
	opacity: 1;
}
.agree-popup__text-block {
    max-width: 670px;
    padding: 24px;
    background: #ffffff;
    color: #000000;
    border-radius: 12px;
    text-align: center;
	font-size: 18px;
	line-height: 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: 1px 1px 8px #5b5b5b;
	transition: all .4s;
	transform: translateY(-1000px);
}
.agree-popup.active .agree-popup__text-block {
	transform: translateY(0);
}
.agree-popup__btn:hover {
	color: #fff;
    background: rgb(50 158 185);
}	
.agree-popup__btn {
    color: rgb(50 158 185);
    background: #fff;
	border: 1px solid rgb(50 158 185);
    padding: 12px 24px;
    border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
}
.anketa-footer {
    display: flex;
    gap: 24px;
}
.page-title {
    font-weight: 800;
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 60px;
	margin-top: 60px;
	text-align: center;
}
.info-message {
    padding: 24px;
    font-size: 16px;
    background: #cf7272;
    border-radius: 10px;
	display: none;
    color: #ffffff;
}
.info-message.active {
	display: block;
}
.err-message {
    font-size: 14px;
    color: #e57b7b;
}

.radio-variant input {
	display: none;
}
.radio-variant__custom-flag {
	width: 24px;
	height: 24px;
	background: #4991ac;
	border-radius: 4px;
	border: 4px solid #4991ac;
	box-sizing: border-box;
	display: block;
}
.radio-variant input:checked+.radio-variant__custom-flag {
	background: #082b81;
	border-color: #4991ac;
}
.radio-variant {
    display: flex;
    gap: 8px;
	cursor: pointer;
}
.radio-input {
    display: flex;
    gap: 16px;
	flex-direction: column;
}

.resume__right .info-message {
	margin-bottom: 16px;
}
/* Отключенный чекбокс */
input[type="checkbox"]:disabled {
    filter: none;
    opacity: 0.5;
    cursor: not-allowed;
}

input[type="checkbox"]:disabled ~ .checkbox-label {
    opacity: 0.5;
    cursor: not-allowed;
}

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

html,
body {
  height: 100%;
  width: 100%;
  line-height: 1;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

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

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

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

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

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  max-width: 100%;
}

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

/* glob */
body {
  font-family: "Nunito", sans-serif;
  color: #071d26;
  min-width: 280px;
  background-image: url("assets/images/total-background.svg");
  background-repeat: repeat-y;
}

body.lock {
  overflow: hidden;
}

.container {
  max-width: 1440px;
  padding: 0 15px;
  margin: 0 auto;
}

::placeholder {
  color: #6a777d;
  opacity: 1;
}

::-ms-input-placeholder {
  color: #6a777d;
}

::-ms-input-placeholder {
  color: #6a777d;
}

* {
    padding: 0;
    margin: 0;
    border: 0;
}
body {
    font-family: "Nunito", sans-serif;
    color: #071d26;
    min-width: 280px;
    background-image: url(/assets/images/total-background.svg);
    background-repeat: repeat-y;
}
.btn-main {
	background-color: rgb(50 158 185);
    border: 1px solid rgb(50 158 185);
    border-radius: 10px;
    padding: 16px 20px;
    font-weight: 800;
    font-size: 20px;
    line-height: 160%;
    color: #fff;
    text-align: center;
    transition: background-color 0.2s ease, color 0.2s ease;
	cursor: pointer;
}
.btn-main:hover {
        background-color: transparent;
        color: rgb(50 158 185);
    }
.container {
  max-width: 1440px;
  padding: 0 15px;
  margin: 0 auto;
}
.anketa-item__property input {
	background: #ffffff;
    padding: 8px 16px;
    border: 1px solid #eee;
    border-radius: 8px;
}
.anketa-item__edit-input {
    display: flex;
    gap: 8px;
	align-items: center;
}
.anketa-item__edit-input.hide {
	display: none;
}
.input-edit-btn.edit-btn {
    background: rgb(50 158 185);
	opacity: 0;
}
.input-edit-btn {
    width: 30px;
    height: 30px;
	cursor: pointer;
    border-radius: 8px;
	display: flex;
    align-items: center;
    justify-content: center;
}
.input-edit-btn img {
	width: 20px;
}
.input-edit-btn.accept-btn {
    background: rgb(21 94 171);
}
.input-edit-btn.cancel-btn {
    background: rgb(50 158 185);
}
.anketa-item__property textarea {
	background: #ffffff;
    padding: 16px;
    border: 1px solid #eee;
    border-radius: 8px;
}
::placeholder {
  color: #6a777d;
  opacity: 1;
}

::-ms-input-placeholder {
  color: #6a777d;
}

::-ms-input-placeholder {
  color: #6a777d;
}
.anketa-item__property-value img {
	border-radius: 4px;
}
.header__address_name {
  color: #6a777d;
  font-size: 13px;
  margin-bottom: -6px;
  padding-left: 30px;
  display: block;
}
.anketa-item__property-value.images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.images-grid img {
	border-radius: 4px;
}
.top-bar {
  background-color: #f3f4f4;
}

.top-bar__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-bar__text {
  font-size: 14px;
  line-height: 160%;
  color: #6a777d;
  margin-right: auto;
}

.top-bar__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 40px;
  margin-left: 16px;
}

.top-bar__socials-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 8px;
}

.top-bar__socials-item:last-child {
  margin-right: 0;
}

.top-bar__socials-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.header {
  min-width: 280px;
  position: relative;
  z-index: 1000;
  background: rgb(21 94 171);
}

.header__top {
  color: #fff;
  padding: 30px 0;
  /*box-shadow: 1px 1px 8px #eee;*/
}

.header__top-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

.header__info-item-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

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

.header__info-item svg {
  margin-right: 10px;
}

.header__info-item-text {
  font-size: 14px;
  line-height: 160%;
  color: #fff;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.header__connection-tel {
  display: block;
  font-weight: 800;
  font-size: 26px;
  line-height: 160%;
  color: #fff;
  margin-bottom: 15px;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.header__connection-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.header__connection-link svg {
  margin-right: 10px;
}

.header__connection-link-text {
  font-weight: 800;
  font-size: 16px;
  line-height: 160%;
  color: rgb(50 158 185);
}
.header__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}
.header__bottom {
  /*background-color: rgb(21 94 171);*/
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin-right: 16px;
}

.menu__item:last-child {
  margin-right: 0;
}

.menu__link {
  padding: 22px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.menu__link::after {
  content: "";
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#ffffff),
    to(#e9e9e9)
  );
  background: -o-linear-gradient(top, #ffffff 0%, #e9e9e9 100%);
  background: linear-gradient(180deg, #ffffff 0%, #e9e9e9 100%);
  border-radius: 10px;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 2px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.menu__item.active > button.menu__link::after {
  opacity: 1;
  visibility: visible;
}

.menu__item.current > .menu__link::after {
  opacity: 1;
  visibility: visible;
}

.menu__link-text {
  font-weight: 800;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  margin-right: 5px;
}

.menu__link-text:last-child {
  margin-right: 0;
}

.menu__sub-list {
  padding: 10px 0;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  background-color: #186380;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  -o-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.menu__item.active > .menu__sub-list {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.menu__item > .menu__link svg {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.menu__item.active > .menu__link svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.menu__sub-item {
  max-width: 340px;

}

.custom-file-label input[type=file]:focus + .custom-file-input .custom-file-input__btn {
	box-shadow: 0 0 0 0.2rem rgb(221 221 221 / 25%);
}

.custom-file-input {
    display: flex;
	align-items: center;
    gap: 16px;
}
.custom-file-input__img {
    border-radius: 4px;
    max-width: 100%;
}
.custom-file-preview__img-wrap {
	position: relative;
	cursor: pointer;
}
.custom-file-preview__img-wrap-hover {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: transparent;
}

.custom-file-preview__img-wrap:hover .custom-file-preview__img-wrap-hover {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgb(50 158 185)ad;
	background-image: url('../images/trash.svg');
	background-position: center;
	background-size: 32px;
	background-repeat: no-repeat;
}


.custom-files-previews-container {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(5, 1fr);
	margin-top: 8px;
}
.custom-file-preview {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.custom-file-preview span {
    font-size: 10px;
    word-break: break-word;
    line-height: 14px;
}
.custom-file-input__btn {
    background: rgb(50 158 185);
    padding: 12px 24px;
    border-radius: 8px;
	cursor: pointer;
	transition: .4s all;
}
.custom-file-input__btn:hover {
	color: rgb(50 158 185);
	background: #fff;
}

.custom-file-label {
    display: flex;
    gap: 8px;
    flex-direction: column;
}
.statistic-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu__sub-link {
  width: 100%;
  font-size: 16px;
  line-height: 160%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 12px 20px 12px 30px;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.menu__sub-item.active > .menu__sub-link {
  background-color: #165973;
}

.menu__sub-link_pr-30 {
  padding-right: 30px;
}

.menu__sub-link svg {
  margin-left: 69px;
}

.menu__sub-item .menu__sub-list {
  top: 0px;
  left: 100%;
  background-color: #165973;
  max-height:100%;
  overflow-y:auto;
}
.menu__sub-item .menu__sub-list::-webkit-scrollbar {
  width: 6px;
}
.menu__sub-item .menu__sub-list::-webkit-scrollbar-track {
  background: #165973;       
}

.menu__sub-item .menu__sub-list::-webkit-scrollbar-thumb {
  background-color: rgb(50 158 185);    
  border-radius: 20px;
}  
  

.menu__sub-item.active .menu__sub-list {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.header__mobile-icons {
  display: none;
}

.mobile-menu {
  display: none;
}

.menu-burger {
  display: none;
}
.anketa-form {
    padding: 32px;
    width: 900px;
    background: rgb(21 94 171);
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #fff;
    border-radius: 10px;
    margin: 60px auto 40px;
}
.form-star {
    color: rgb(50 158 185);
}
label {
    font-size: 18px;
    line-height: 26px;
}
.input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.input-group input {
    padding: 12px 32px;
    background: #082b81;
    border: 1px solid #4991ac;
    border-radius: 10px;
    padding: 17px 20px 17px 20px;
    font-size: 16px;
    line-height: 160%;
    color: #fff;
}
.input-group textarea {
    padding: 12px 32px;
    background: #4991ac;
    border: 1px solid #4991ac;
    border-radius: 10px;
    padding: 17px 20px 17px 20px;
    font-size: 16px;
    line-height: 160%;
    color: #fff;
}
.input-group li {
    list-style: disc;
    font-size: 12px;
}
.input-group ul {
    padding-left: 16px;
}
.final-btn {
    display: none;
}
.final-btn.active {
    display: block;
}
.anketa-btn {
    font-weight: 800;
    font-size: 18px;
    line-height: 160%;
    text-align: center;
    color: rgb(50 158 185);
    padding: 16px 20px;
    cursor: pointer;
    width: 100%;
    border-radius: 10px;
    background-color: #fff;
    margin-bottom: 10px;
    transition: background-color 0.2s ease, color 0.2s ease;
    margin-top: 16px;
}
.anketa-btns.active {
    display: flex;
}
.anketa-btns {
    display: none;
    gap: 24px;
}

.anketa-btn {
    display: none;
}
.anketa-btn.active {
    display: block;
}

.step {
    display: none;
    flex-direction: column;
    gap: 24px;
}
.step.active {
    display: flex;
}
form button {
    font-weight: 800;
    font-size: 18px;
    line-height: 160%;
    text-align: center;
    color: rgb(50 158 185);
    padding: 16px 20px;
    width: 100%;
    border-radius: 10px;
    background-color: #fff;
    margin-bottom: 10px;
    transition: background-color 0.2s ease, color 0.2s ease;
    margin-top: 16px;
}

form button:hover {
    background-color: rgb(50 158 185);
    color: #fff;
}

span.form-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 24px;
}
input.empty-field {
	border: 1px solid #ed4141;
}
textarea.empty-field {
	border: 1px solid #ed4141;
}
.resume-edit .empty-field {
	border: 1px solid #ed4141;
	background: #dca3a3;
	color: #000;
}
#info_agree, #policy_agree {
	pointer-events: none;
}
.comment-block .fields-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
}
li.fields-list__name {
    list-style: disc;
    margin-left: 28px;
}
.custom-select-block__selected {
    background: #ffffff;
    padding: 8px 16px;
    border: 1px solid #eee;
    border-radius: 8px;
}
.custom-select-block__option {
    padding: 8px 16px;
	cursor: pointer;
	transition: all .2s;
}
.anketa-item__property:hover .edit-btn {
	opacity: 1;
}
.custom-select-block__options {
    border: 1px solid #eee;
    border-radius: 0 0 8px 8px;
	display: none;
}
.custom-select-block.active .custom-select-block__selected {
	border-radius: 8px 8px 0 0;
}
.custom-select-block.active .custom-select-block__options {
	display: block;
}
.custom-select-block__option:hover {
	background: rgb(21 94 171);
	color: #fff;
}

.anketa-list.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
}
.anketa-list.list {
    display: flex;
    gap: 8px;
	flex-direction: column;
}
.anketa-list.list .statuses_status span:first-child{
	display: none;
}
.anketa-list.list .anketa-item {
	border-radius: 4px;
}
.anketa-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 1px 1px 15px #dbdbdb;
}
.anketa-list.grid .anketa-item {
	display: grid;
    grid-template-columns: 150px auto;
    grid-gap: 24px;
	padding: 24px;
}
.anketa-list.list .anketa-item__left {
	display: none;
}
.anketa-list.list .anketa-item__right {
    display: grid;
    grid-template-columns: 21% 21% 19% auto;
	align-items: center;
	gap: 0;
}
.anketa-list.rekrut-mode.list .anketa-item__right {
    grid-template-columns: 24% 16% auto;
}	
.anketa-list.list.ruk-mode .anketa-list-head {
    grid-template-columns: 21% 21% 19% auto 150px;
}
.anketa-list.admin-mode.list .anketa-item__right {
    grid-template-columns: 18% 16% 14% 14% 16% auto;
}
.anketa-list.list .anketa-item__top {
	/*display: flex;*/
    display: grid;
    grid-template-columns: 49% 46%;
    order: 2;
	border-bottom: 0;
    justify-content: space-between;
	padding-right: 12px;
    padding-left: 12px;
}
.anketa-list.list .anketa-item__property-key {
	display: none;
}
.anketa-item__left img {
    border-radius: 6px;
}
.anketa-item__property-key {
    color: rgb(50 158 185);
	line-height: 22px;
}
.anketa-list.grid .anketa-item__property {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.anketa-list.list .anketa-item__property {
    padding: 12px;
    border-right: 1px solid #dcdcdc;
	display: block;
    height: 100%;
}
.status.status-1.delete-resume {
    color: #000;
    border-color: #000;
}
.status.status-1.delete-resume:hover {
    color: #fff;
    background: #000;
	
}
.anketa-list.list .anketa-item__property-value {
	font-size: 14px;
}

.resume .resume-tabs-content {
	overflow: auto;
	height: auto;
	max-height: 100%;
}

.grid .anketa-list-head {
    display: none;
}
.list .anketa-list-head {
    display: grid;
    grid-template-columns: 21% 21% 19% auto 150px;
    background: rgb(50 158 185);
    color: #fff;
	border-radius: 4px 4px 0 0;
}
.status.status-error {
	background: #7e343c;
	color: #fff;
	cursor: pointer;
}
.status.status-error:hover {
	background: #bb2d3b;
}
.status.status-success {
	background: rgb(21 94 171);
	color: #fff;
	cursor: pointer;
}
.status.status-success:hover {
	background: #21867a;
}
.list.ruk-mode .anketa-list-head {
	grid-template-columns: 20% 16% 19% auto;
}
.list.admin-mode .anketa-list-head {
    grid-template-columns: 18% 16% 14% 14% 16% auto 150px;
}
.list.rekrut-mode .anketa-list-head {
	grid-template-columns: 24% 16% auto 150px;
}
.anketa-list-head__td {
    padding: 12px;
	border-right: 1px solid;
}
.anketa-list-head__td:last-child {
	border: 0;
}
.anketa-item__property-value {
    color: #606060;
    font-size: 16px;
	max-width: 800px;
	line-height: 22px;
}
.anketa-item__right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer {
    background: rgb(21 94 171);
}
.footer__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: grid;
	grid-template-columns: 30% 50% 20%;
    padding: 60px 0;
}
.documents-block__header {
	display: grid;
	margin: 24px 0;
	grid-template-columns: 1fr 1fr;
	background: #4087a3;
	border-radius: 8px;
	width: 50%;
}
.documents-block__inputs {
	display: none;
	flex-direction: column;
    gap: 24px;
}
.documents-block__inputs.active {
	display: flex;
}
.status-err ul {
    margin-top: 8px;
    padding-left: 16px;
}
.status-err li {
    list-style: disc;
}
.documents-block__tab {
	padding: 12px;
	border-radius: 8px;
	cursor: pointer;
}
.documents-block__tab.active {
	color: #000000;
    background: #fff;
	
}
.page-title {
    font-weight: 800;
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 60px;
}
.footer__callback {
  max-width: 370px;
  margin-right: 100px;
}
h2, h3, h4 {
    font-weight: 800;
    font-size: 44px;
    line-height: 160%;
    margin-bottom: 24px;
}
h3 {
    font-size: 34px;
    line-height: 140%;
    font-weight: 700;
}
.content-body p {
    font-size: 18px;
    line-height: 160%;
    color: #6a777d;
    margin-bottom: 40px;
}
.content-body ul, .content-body ol {
    padding-left: 40px;
    margin-bottom: 40px;
}
.content-body ol li {
    font-size: 18px;
    line-height: 160%;
    color: #6a777d;
    margin-bottom: 20px;
    padding-left: 10px;
}
.footer__logo {
  margin-bottom: 90px;
}

.footer__form-wrapper {
  margin-bottom: 60px;
}

.form-footer__wrapper {
  margin-bottom: 25px;
}

.form-footer__label {
  margin-right: 0;
  margin-bottom: 10px;
}

.form-footer__label:last-child {
  margin-bottom: 0;
}

.footer__logo {
  margin-bottom: 90px;
}

.form-footer__input {
  background-color: #394a51;
  border-color: #394a51;
}

.form-footer__submit {
  margin-bottom: 15px;
  border: 1px solid #fff;
  padding: 15px 20px;
}

.payment__title {
  font-weight: 800;
  font-size: 22px;
  line-height: 160%;
  color: #fff;
  margin-bottom: 30px;
}

.payment__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.payment__item {
  margin-right: 10px;
}

.payment__item:last-child {
  margin-right: 0;
}

.footer-title {
  font-weight: 800;
  font-size: 26px;
  line-height: 160%;
  color: #fff;
  margin-bottom: 50px;
}

.footer__services {
  margin-right: 121px;
}

.footer__services-more-block {
  margin-bottom: 60px;
}

.footer__services-list {
  list-style-position: inside;
  -moz-column-count: 2;
  -webkit-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
  list-style-type: decimal;
}

.footer__services-item {
  margin-bottom: 10px;
}

.footer-link {
  font-size: 18px;
  line-height: 160%;
  color: #fff;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.footer__services-decor {
  padding: 10px 20px;
  font-weight: 800;
  font-size: 18px;
  line-height: 160%;
  color: #071d26;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.anketa-item__top {
    border-bottom: 1px solid #eee;
    display: grid;
    grid-template-columns: auto 107px;
    gap: 16px;
}
.view-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
	margin-bottom: 24px;
}
.view-switcher__btn {
    width: 32px;
    height: 32px;
    padding: 4px;
    background: #dadada;
    border-radius: 4px;
	cursor: pointer;
}
.view-switcher__btn:hover {
	background: #c1c1c1;
}
.view-switcher__btn.active {
	background: rgb(50 158 185);
}
.anketa-item__date {
    background: #e7e7e7;
    color: #000000;
}
.footer__about-list {
  margin-bottom: 70px;
}

.footer__about-item {
  margin-bottom: 10px;
}

.footer__requisites {
  margin-bottom: 70px;
  font-size: 16px;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.4);
}
.footer__services-decor {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 14px;
}
.footer__connection-item {
  margin-bottom: 10px;
}

.footer__connection-main {
  margin-bottom: 30px;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.socials__item {
  margin-right: 30px;
}

.socials__item:last-child {
  margin-right: 0;
}

.footer__copyright-text {
  font-size: 14px;
  line-height: 160%;
  color: #fff;
  max-width: 672px;
  margin-right: 16px;
}
main {
    padding: 30px 0 80px;
}
.footer__copyright-text:last-child {
  margin-right: 0;
}

.footer__copyright-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__copyright {
  padding: 40px 0;
  border-top: 1px solid #394a51;
}

.socials__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.footer__callback_mobile-btn {
  display: none;
}
.resume {
    display: grid;
    grid-template-columns: 400px auto;
	grid-gap: 24px;
}
.resume__contacts.resume-infoblock {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px 0;
}
.resume-info {
	display: none;
}
.edited-resume .anketa-item__property.edited {
    background: #ffffde;
    padding: 12px;
    border-radius: 8px;
}
.resume__left {
    box-shadow: 1px 1px 15px #eee;
    padding: 24px;
    border-radius: 10px;
}
/*.resume__right {
    box-shadow: 1px 1px 15px #eee;
    padding: 24px;
    border-radius: 10px;
	display: flex;
    flex-direction: column;
}*/
.two-columns-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.resume-tabs {
    display: flex;
	gap: 1px;
}
.filter {
    padding: 24px;
    background-color: #ffffff;
    border-radius: 10px;
	display: flex;
    box-shadow: 1px 1px 15px #dbdbdb;
    margin-bottom: 24px;
	gap: 16px;
}
.filter-input-group__label {
    color: rgb(50 158 185);
}
.filter-input-group__input {
	background: #ffffff;
    padding: 16px;
    border: 1px solid #eee;
    border-radius: 8px;
	max-width: 180px;
}
.filter-input-group {
    display: flex;
    gap: 8px;
    align-items: center;
}

.resume-tabs__tab {
    padding: 16px;
    text-align: center;
    user-select: none;
    transition: all .3s;
	cursor: pointer;
	align-items: center;
    gap: 8px;
	display: flex;
}
.users-list {
    display: flex;
    gap: 8px;
    flex-direction: column;
}
.user-card {
	border-radius: 8px;
    padding: 12px 16px;
    display: grid;
    grid-template-columns: 25% 25% 20% auto;
	align-items: center;
    gap: 16px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    justify-content: space-between;
    border: 1px solid #e9ecef;
    position: relative;
}
.user-card__prop {
	color: rgb(50 158 185);
}

.user-card.deleted {
    background: #b9b9b9;
}
.user-card__password {
	display: flex;
    gap: 4px;
}
.user-card__password-visible {
	display: none;
}
.user-card__show-pass-btn {
	display: block;
	cursor: pointer;
	transition: all .4s;
}
.user-card__show-pass-btn:hover {
	background: #707070;
	color: #fff;
}
.user-card__password .user-card__prop {
	display: none;
}
.user-card__show-pass-btn {
    background: #eee;
    padding: 5px;
    border-radius: 4px;
}
.user-card__password.showed .user-card__show-pass-btn {
	display: none;
}
.user-card__password.showed .user-card__prop {
	display: block;
}
.user-card__password.showed .user-card__password-visible {
	display: block;
}
.user-card.deleted .user-card__delete-btn {
	background: rgb(160 160 160);
	pointer-events: none;
}
.pdf-format .resume__statuses {
	display: none;
}
.pdf-format .two-columns-block {
	grid-template-columns: 1fr; 
}
.pdf-format .save-resume-pdf {
	display: none;
}
.resume.pdf-format {
	grid-template-columns: 250px auto;
}
.pdf-format .resume-tabs-content_block:nth-child(2) {
	display: block;
}
.user-card__delete-btn {
    background: rgb(50 158 185);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}
.resume-tabs__tab:first-child {
	border-radius: 8px 0 0 0;
}
.resume-tabs__tab:last-child {
	border-radius: 0 8px 0 0;
}
.resume-tabs__tab.active {
	background: rgb(50 158 185);
    color: #fff;
}
.resume-tabs__tab:hover {
	background: rgb(50 158 185);
    color: #fff;
}
.resume-tabs__tab:hover span {
	background: #fff;
    color: rgb(50 158 185);
}
.resume-tabs__tab.active span {
	background: #fff;
    color: rgb(50 158 185);
}
.resume-tabs-content_block {
	display: none;
}
.resume-tabs-content_block.active {
    display: block;
}
.column-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.info-block:first-child {
	border-top: 0;
    padding-top: 0px;
}
.info-block {
	border-top: 1px solid #dbdbdb;
    padding-top: 24px;
	padding-bottom: 24px;
	gap: 16px;
}
.resume__status-block {
	margin: 16px 0 ;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.status {
    padding: 16px;
    text-align: center;
    border-radius: 4px;
	user-select: none;
	transition: all .3s;
	
}
.status-1 {
	background: #fff;
    color: rgb(50 158 185);
    border: 1px solid rgb(50 158 185);
	cursor: pointer;
}	
.status-1.add-to-blacklist {
	border: 1px solid #000;
	color: #000;
}
.status-1.add-to-blacklist:hover {
	color: #fff;
	background: #000;
}
.status-1:hover {
	background: rgb(50 158 185);
    color: #fff;
    border: 1px solid #fff;
}	

.status-1.remove-from-blacklist {
	border: 1px solid #000;
	color: #000;
}
.status-1.remove-from-blacklist:hover {
	color: #fff;
	background: #000;
}

.status-2 {
	background: rgb(50 158 185);
    color: #fff;
    border: 1px solid #fff;
}
.status-hr p {
	margin-bottom: 14px;
	font-size: 14px;
}
.status-sb p {
	margin-bottom: 14px;
	font-size: 14px;
}

.status-sb .status-1 {
    background: #fff;
    color: rgb(21 94 171);
    border: 1px solid rgb(21 94 171);
    cursor: pointer;
}
.status-sb .status-1:hover {
	background: rgb(21 94 171);
    color: #fff;
    border: 1px solid #fff;
}	
.status-sb .status-2 {
	background: rgb(21 94 171);
    color: #fff;
    border: 1px solid #fff;
}
.statuses_status {
    color: #383838;
}
.log__message span {
	font-weight: 600;
}
.log-rekrut {
    color: rgb(50 158 185);
}
.log-sb {
    color: #F59E0B;
}
.log-dezhur {
    color: #8B5CF6;
}
.log-resume {
    color: #3B82F6;
}
.log-status-4 {
    color: #10B981;
}
.log-status-5 {
    color: #EF4444;
}
.log-status-6 {
    color: rgb(50 158 185);
}
.log__message {
    color: #818181;
	line-height: 22px;
}
.log-status-9 {
    color: #1f747c;
}

.statuses_status.status-hr-2  span {
	color: rgb(50 158 185);
}
.statuses_status.status-hr-1  span {
	color: #606060;
}
.statuses_status.status-hr-5 span {
	color: #61a726;
}
.statuses_status.status-hr-4 span {
	color: #aba052;
}

.statuses_status.status-sb-1  span {
	color: #606060;
}
.statuses_status.status-sb-2  span {
	color: rgb(21 94 171);
}
.anketa-list.grid span.statuses {
    padding: 12px 0;
    display: flex;
    gap: 16px;
	border-bottom: 1px solid #eee;
}

.anketa-list.list span.statuses {
	padding: 0;
	border: 0;
}
.lk {
	display: grid;
    grid-template-columns: 400px auto;
    grid-gap: 24px;
}
.statistic-count span {
	    color: rgb(50 158 185);
    font-weight: 600;
}
.statistic-table__head {
    display: grid;
    grid-template-columns: 40% 20% 20% 20%;
    background: rgb(50 158 185);
    color: #fff;
	border-radius: 8px 8px 0 0;
}
.statistic-item {
    display: grid;
    grid-template-columns: 40% 20% 20% 20%;
	border-bottom: 1px solid #eee;
}
.statistic-table__head .statistic-table__cell {
	border-right: 1px solid #fff;
}
.statistic-table__head .statistic-table__cell:last-child {
	border-right: 0;
}	
.statistic-switcher {
    display: inline-flex;
	margin-bottom: 16px;
	overflow: hidden;
    border-radius: 4px;
	border: 1px solid #dcdcdc;
}
.statistic-mode.active {
    background: rgb(50 158 185);
    color: #fff;
}
.loader {
    width: 48px;
    height: 48px;
    border: 5px solid rgb(50 158 185);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    } 

.statistic-table .loader {
	margin: 40px auto;
	text-align: center;
	display: block;
}

.statistic-mode {
    padding: 12px 24px;
	cursor: pointer;
	transition: all .2s;
	border-right: 1px solid #fff;
}
.statistic-mode:last-child {
	border-right: 1px solid transparent;
}
.statistic-mode:hover {
	background: rgb(50 158 185);
	color: #fff;
}
.statistic-table__cell {
    padding: 12px 24px;
	border-right: 1px solid #dcdcdc;
}
.statistic-table__cell:last-child {
	border-right: 0;
}	
.lk__left {
	box-shadow: 1px 1px 15px #eee;
    padding: 24px;
    border-radius: 10px;
	display: flex;
    flex-direction: column;
    gap: 16px;
}
.lk__right {
	/*box-shadow: 1px 1px 15px #eee;
    padding: 24px;
    border-radius: 10px;*/
}
.reg-request {
    border-radius: 8px;
    padding: 16px;
    display: flex;
	flex-direction: column;
    gap: 16px;
	background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    justify-content: space-between;
	border: 1px solid #e9ecef;
	position: relative;
}
.reg-request__header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 12px;
    margin-bottom: 8px;
}
.reg-request__role {
    color: rgb(50 158 185);
}
.btn {
    padding: 8px 16px;
    font-size: 14px;
	border-radius: 8px;
	transition: all .2s;
}
.btn-success {
	background: rgb(21 94 171);
	color: #fff;
}
.btn-success:hover {
	background: #21867a;
	color: #fff;
}
.btn-error {
	background: #fff;
    color: rgb(50 158 185);
    border: 1px solid rgb(50 158 185);
}
.btn-error:hover {
	background: #bb2d3b;
}
.reg-requests {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.reg-request__date {
    color: rgb(143 143 143);
}
.reg-request__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.reg-request__buttons {
	display: flex;
	gap: 8px;
}
.lk__copy-form-link {
	background: #fff;
    color: rgb(50 158 185);
    border: 1px solid rgb(50 158 185);
    cursor: pointer;
	padding: 16px;
    text-align: center;
    border-radius: 4px;
    user-select: none;
    transition: all .3s;
}
.lk__copy-form-link:hover {
	background: rgb(50 158 185);
    color: #fff;
    border: 1px solid #fff;
}
.lk__copy-form-link.copied {
	background: rgb(50 158 185);
    color: #fff;
    border: 1px solid #fff;
}	
.log {
    display: flex;
    gap: 16px;
	color: #000;
	align-items: center;
	border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}

.logs {
    display: flex;
    flex-direction: column;
    gap: 12px;
	max-height: 400px;
    /*overflow-y: scroll;*/
}
.log__date {
    padding: 8px 16px;
	/*min-width: 170px;
    text-align: center;*/
	display: flex;
    flex-direction: column;
    gap: 4px;
    border-radius: 4px;
	color: #fff;
}
.log__date span {
	border-bottom: 1px solid #bdbdbd;
    padding-bottom: 4px;
	font-size: 14px;
}
.log-1 .log__date {
	background: #3B82F6;
}
.log-2 .log__date {
	background: #8B5CF6;
}
.log-3 .log__date {
	background: #F59E0B;
}
.log-4 .log__date {
	background: #10B981;
}
.log-5 .log__date {
	background: #EF4444;
}
.log-6 .log__date {
	background: rgb(50 158 185);
}
.log-7 .log__date {
	background: #0e4a3f;
}
.log-8 .log__date {
    background: #583a3a;
}
.log-9 .log__date {
	background: #1f747c;
}
.log-10 .log__date {
	background: #bb1212;
}
.log-11 .log__date {
	background: #3b9282;
}
.status-err {
	display: none;
    background: #EF4444;
    color: #fff;
    padding: 12px;
    line-height: 20px;
    border-radius: 4px;
	opacity: 0;
	transition: all .5s;
}

.status-err.active {
	display: block;
}
.status-err.fade {
	opacity: 1;
}

.anketa-comments {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.comment-block__heading {
    color: rgb(50 158 185);
    margin-bottom: 16px;
}
.comment-block {
    padding: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    border-radius: 8px;
}
.resume-tabs-content {
    box-shadow: 1px 1px 15px #eee;
    padding: 24px;
    border-radius: 0 10px 10px 10px;
    display: flex;
    flex-direction: column;
	overflow-y: scroll;
    max-height: 800px;
}
.resume-tabs__tab span {
	background: rgb(50 158 185);
    width: 22px;
    height: 22px;
	transition: all .3s;
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.resume-tabs__tab span.zero {
    background: #b5b5b5;
    color: #fff;
}	
.lk-heading {
    margin-bottom: 24px;
    font-size: 20px;
}
.statuses_status {
	display: flex;
    flex-direction: column;
    gap: 8px;
}
.statuses_status span.status-value {
	border-radius: 4px;
	padding: 4px 8px;
}
.anketa-item-status-1 span.status-value {
	background: #3B82F6;
    color: #fff;
}
.anketa-item-status-2 span.status-value {
	background: #8B5CF6;
	color: #fff;
}
.anketa-item-status-3 span.status-value {
	background: #F59E0B;
	color: #fff;
}
.anketa-item-status-4 span.status-value {
	background: #10B981;
    color: #fff;
}
.anketa-item-status-5 span.status-value {
	background: #EF4444;
	color: #fff;
}
.anketa-item-status-6 span.status-value {
	background: rgb(50 158 185);
	color: #fff;
}
.anketa-item-status-7 span.status-value {
	background: #0e4a3f;
	color: #fff;
}
.anketa-item-status-8 span.status-value {
	color: #fff;
    background: #583a3a;
}
.anketa-item-status-9 span.status-value {
	background: #1f747c;
    color: #fff;
}
.anketa-item-status-10 span.status-value {
	background: #bb1212;
    color: #fff;
}
.anketa-item-status-11 span.status-value {
	background: #3b9282;
    color: #fff;
}

.comment-block .anketa-item__edit-input {
	align-items: flex-start;
}
.fields-list__field-group label {
    display: grid;
    align-items: flex-start;
    grid-gap: 8px;
    grid-template-columns: 16px auto;
    font-size: 16px;
	line-height:16px;
}


@media (min-width: 1025px) {
  .form-footer__submit:hover {
    background-color: transparent;
  }

  .footer-link:hover {
    color: rgba(255, 255, 255, 0.6);
  }

  .socials__link:hover {
    opacity: 0.6;
  }
}
@media(max-width: 1600px){
	.container {
		max-width: 1200px;
	}
}
@media (max-width: 1400px) {
  .container {
	  max-width: 1140px;
  }
  .footer__content {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 70px 0;
  }

  .footer__callback {
    margin-right: 60px;
  }

  .footer__services {
    margin-right: 60px;
  }
}

@media (max-width: 1200px) {
  .footer__content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .lk {
    grid-template-columns: 25% 75%;
  }
  .anketa-list.grid {
	  grid-template-columns: repeat(1, 1fr);
  }
  .anketa-list .anketa-item__property:nth-child(3) {
	  display: none;
  }
  
  .anketa-list .anketa-list-head__td:nth-child(2) {
	  display: none;
  }
  .footer__logo {
    margin-bottom: 45px;
  }
  .info-block {
	grid-template-columns: 1fr;
  }
  .anketa-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer__callback {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(50% - 30px);
    flex: 1 1 calc(50% - 30px);
    max-width: none;
    margin-bottom: 50px;
  }
	.container {
	  max-width: 960px;
  }
  .footer__services {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    margin-right: 0;
  }
  .list .anketa-list-head {
    grid-template-columns: 24% 24% auto 150px;
  }
  .anketa-list.list .anketa-item__right {
	  grid-template-columns: 24% 24% auto;
  }
  .filter {
	flex-direction: column;
  }
  .filter-input-group {
	  flex-direction: column;
	align-items: normal;
  }
  .footer__services-list {
    -moz-column-count: 4;
    -webkit-column-count: 4;
    column-count: 4;
  }

  .footer__about {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(50% - 30px);
    flex: 1 1 calc(50% - 30px);
    margin-bottom: 50px;
  }
}

@media (max-width: 991px) {
  .footer__logo .logo__img {
    width: 250px;
  }
  .container {
	  max-width: 720px;
  }
  .user-card {
	  grid-template-columns: repeat(2, 1fr);
  }
  .filter {
	  flex-direction: column;
  }
      .resume {
        grid-template-columns: 230px auto;
        font-size: 14px;
    }
	.log__date {
		padding: 8px 8px;
		min-width: 140px;
	}
	.resume {
		grid-gap: 16px;
	}
  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
  }

  .footer__callback {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-right: 0;
  }

  .footer__services {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    margin-right: 0;
    margin-bottom: 50px;
  }

  .footer__services-more-block {
    margin-bottom: 40px;
  }

  .footer__services-list {
    -moz-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
  }

  .footer__about {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(50% - 30px);
    flex: 1 1 calc(50% - 30px);
    margin-bottom: 145px;
  }

  .footer__callback_mobile-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .footer__form-wrapper {
    display: none;
  }

  .footer-title {
    font-size: 18px;
    line-height: 140%;
    margin-bottom: 25px;
  }

  .footer__about-item {
    margin-bottom: 15px;
  }

  .footer-link {
    font-size: 14px;
    line-height: 140%;
  }

  .footer__services-decor {
    padding: 15px;
    font-size: 14px;
    line-height: 140%;
  }

  .footer__about-list {
    margin-bottom: 50px;
  }

  .footer__requisites-item {
    font-size: 14px;
    line-height: 140%;
  }

  .footer__requisites {
    margin-bottom: 50px;
  }

  .footer__copyright {
    padding: 30px 0;
  }

  .footer__copyright-container {
    display: block;
  }

  .footer__copyright-text {
    margin-right: 0;
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 140%;
  }

  .footer__copyright-text:last-child {
    margin-bottom: 0;
  }

  .payment__title {
    font-size: 18px;
    line-height: 140%;
    margin-bottom: 25px;
  }

  .payment {
    position: absolute;
    bottom: 70px;
    left: 0;
  }
   .lk {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
  .footer__services-list {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
  }
  .view-switcher {
	  display: none;
  }
  .statistic-header {
    flex-direction: column;
	gap: 8px;
    align-items: flex-start;
}
  .anketa-list.list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 24px;
  }
  .anketa-list.admin-mode.list .anketa-item__right {
	  grid-template-columns: 1fr;
  }
  .anketa-list.list .anketa-item__top {
	      grid-template-columns: 1fr;
  }
  .filter-input-group__input {
	  max-width: 100%;
  }
  .user-card {
	  grid-template-columns: repeat(1, 1fr);
  }
	.resume-tabs-content {
		padding: 0;
		padding-top: 24px;
		box-shadow: none;
	}
  .list .anketa-list-head {
	  display: none;
  }
  .anketa-list.list .anketa-item__property-key {
	  display: block;
  }
  .anketa-list.list .anketa-item__property {
	  padding: 0;
	  border: 0;
  }
   .resume {
        grid-template-columns: 1fr;
    }
	.anketa-item {
		grid-template-columns: 1fr;
	}
	.anketa-item__left img {
		width: 100%;
	}
	.documents-block__header {
		width: 100%;
	}
	.container {
	  max-width: 100%;
    }
	.anketa-list.list .anketa-item__right {
		grid-template-columns: 1fr;
		padding: 24px;
		grid-gap: 24px;
	}
	.anketa-list.list .anketa-item__top {
		order: -1;
		padding: 0;
	}
	.anketa-list.grid .anketa-item {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 575px) {
  .footer__services-wrapper {
    margin-bottom: 30px;
  }

  .footer__services-list {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
  }
  .statistic-table__cell {
	  font-size: 12px;
	  padding: 12px;
  }
  .footer__services-more {
    background-color: #394a51;
    color: #fff;
  }
  .statistic-table__head {
	  grid-template-columns: 40% 35% 25%;
  }
  .statistic-item {
	  grid-template-columns: 40% 35% 25%;
  }
  .footer__callback_mobile-btn {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media(max-width: 400px){
	.anketa-item__top {
		grid-template-columns: 1fr;
	}
	.statistic-mode {
		font-size: 14px;
		padding: 12px;
	}
	.resume-tabs__tab {
		font-size: 12px;
	}
	.filter-input-group__input {
		max-width: 278px;
	}
}

@media (min-width: 1025px) {
  .top-bar__socials-link:hover {
    opacity: 0.7;
  }

  .header__info-item-btn:hover .header__info-item-text {
    color: rgb(21 94 171);
  }

  .header__connection-tel:hover {
    color: rgb(50 158 185);
  }

  .header__connection-link:hover {
    opacity: 0.7;
  }

  .menu__item:hover .menu__link::after {
    opacity: 1;
    visibility: visible;
  }

  .menu__sub-item:hover .menu__sub-link {
    background-color: #165973;
  }

  .menu__sub-item .menu__sub-list .menu__sub-item:hover .menu__sub-link {
    background-color: #145067;
  }
}

@media (max-width: 1200px) {
  .header__connection-tel {
    font-size: 20px;
    line-height: 140%;
  }

  .top-bar__socials {
    margin-right: 16px;
  }

  .header__top {
    padding: 17px 0;
  }

  .menu__link-text {
    font-size: 14px;
    line-height: 140%;
  }
}

@media (max-width: 991px) {
	.anketa-form {
		max-width: 100%;
		padding: 16px;
	}
	.footer__content {
		display: flex;
		flex-direction: column;
	}
	.custom-files-previews-container {
		grid-template-columns: repeat(3, 1fr);
	}
  .header {
    border-bottom: 1px solid #e6e8e9;
    background-color: #fff;
    z-index: 10000;
    width: 100%;
    position: sticky;
    top: 0;
  }
  .header__block {
    display: none;
  }
  .header__top-container {
    -webkit-box-pack: initial;
    -ms-flex-pack: initial;
    justify-content: initial;
  }

  .header__info,
  .header__connection,
  .header__btn,
  .top-bar {
    display: none;
  }

  .menu-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin-right: 20px;
    padding: 2px 0;
    cursor: pointer;
    position: relative;
    order: 1;
  }

  .menu-burger__decor {
    -webkit-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }

  .menu-burger::before {
    top: 2px;
  }

  .menu-burger::after {
    bottom: 2px;
  }

  .menu-burger::before,
  .menu-burger::after {
    content: "";
    -webkit-transition: top 0.2s ease, bottom 0.2s ease, left 0.2s ease,
      -webkit-transform 0.2s ease;
    transition: top 0.2s ease, bottom 0.2s ease, left 0.2s ease,
      -webkit-transform 0.2s ease;
    -o-transition: transform 0.2s ease, top 0.2s ease, bottom 0.2s ease,
      left 0.2s ease;
    transition: transform 0.2s ease, top 0.2s ease, bottom 0.2s ease,
      left 0.2s ease;
    transition: transform 0.2s ease, top 0.2s ease, bottom 0.2s ease,
      left 0.2s ease, -webkit-transform 0.2s ease;
    position: absolute;
    left: 0;
  }

  .menu-burger__decor,
  .menu-burger::before,
  .menu-burger::after {
    background-color: #6a777d;
    width: 100%;
    height: 2px;
  }

  .menu-burger.active .menu-burger__decor {
    opacity: 0;
  }

  .menu-burger.active::before,
  .menu-burger.active::after {
    left: 50%;
  }

  .menu-burger.active::before {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .menu-burger.active::after {
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
    -ms-transform: translate(-50%, 50%) rotate(-45deg);
    transform: translate(-50%, 50%) rotate(-45deg);
  }

  .header__logo {
    //margin-right: auto;
    order: 3;
  }

  .header__mobile-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    order: 2;
  }

  .header__mobile-phone {
    margin-right: 20px;
    padding-left: 20px;
    position: relative;
  }
  
  .header__mobile-phone::before {
    content: url('/netcat_template/template/custom/assets/img/1call.svg');
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
  }

  .header__mobile-phone_digits {
    font-weight: 700;
    color: rgb(21 94 171);
    margin-right: 10px;
    transition: 0.3s;
    font-size: 16px;
  }

  .header__mobile-phone_digits:hover {
    color: rgb(50 158 185);
    transition: 0.3s;
  }

  .header__mobile-phone,
  .header__mobile-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header__bottom {
    display: none;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
    overflow: auto;
    -webkit-transform: translateX(-110%);
    -ms-transform: translateX(-110%);
    transform: translateX(-110%);
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    -o-transition: transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
    background-color: #fff;
  }

  .mobile-menu.active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .mobile-menu__list {
    background-color: rgb(21 94 171);
    padding: 0 15px;
  }

  .mobile-menu__btn {
    padding: 10px 0;
    min-height: 44px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #3e8aa7;
  }

  .mobile-menu__item:last-child .mobile-menu__btn {
    border-bottom: none;
  }

  .mobile-menu__btn-text {
    font-weight: 800;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
  }

  .accor-open > svg {
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    -o-transition: transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  }

  .mobile-menu__item.active > .mobile-menu__btn > svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .mobile-menu__sub-link {
    padding: 10px 0;
    min-height: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
  }

  .mobile-menu__sub-list {
    padding-left: 20px;
  }

  .mobile-menu__sub-link {
    font-size: 14px;
    line-height: 140%;
    color: #fff;
    border-bottom: 1px solid #3e8aa7;
  }

  .mobile-menu__sub-item:last-child .mobile-menu__sub-link {
    border-bottom: none;
  }

  .mobile-menu__item-content {
    border-bottom: 1px solid #3e8aa7;
  }

  .mobile-menu__sub-item.active > .accor-open > svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .mobile-menu__sub-item.active {
    border-bottom: 1px solid #3e8aa7;
  }

  .mobile-menu .header__info,
  .mobile-menu .header__connection,
  .mobile-menu .header__btn {
    display: block;
  }

  .mobile-menu__list {
    margin-bottom: 30px;
  }

  .header__info {
    margin-bottom: 30px;
  }

  .header__connection {
    margin-bottom: 30px;
  }

  .header__connection-tel {
    margin-bottom: 30px;
  }

  .header__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .header__socials-item {
    margin-right: 16px;
  }

  .header__socials-item:last-child {
    margin-right: 0;
  }

  .header__socials-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header__btn {
    width: 100%;
  }

  .mobile-menu__container {
    margin-bottom: 30px;
  }

  .mobile-menu__consultation {
    padding: 20px 15px;
    background-color: #f3f4f4;
    font-size: 14px;
    line-height: 140%;
    color: #6a777d;
  }
}


@media (max-width: 380px) {
  .logo__picture {
    width: 90px;
  }
  .anketa-item {
	  padding: 12px;
  }
  .resume__left {
	  padding: 12px;
  }
  .resume__right {
	  padding: 12px;
  }
  .documents-block__header {
    display: grid;
    grid-template-columns: 1fr 1fr; 
	}
	.documents-block__tab {
		padding: 8px;
		border-radius: 8px;
		cursor: pointer;
		font-size: 12px;
	}
}

@media (max-width: 360px) {
  .logo__picture {
    width: 85px;
  }
  .header__top-container {
    padding: 0 5px;
  }
  .header__mobile-phone_digits {
    font-size: 13px;
    margin-right: 5px;
  }
}

.holidays {
  padding: 9.5px;
  background-color: rgb(21 94 171);
  text-align: center;
  color: #fff;
}

.holidays .container {
  height: 100%;
}

.holidays__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

@media (max-width: 575px) {
  .holidays__text {
    font-size: 14px;
  }
  .custom-files-previews-container {
		grid-template-columns: repeat(2, 1fr);
	}
	.log {
		flex-direction: column;
		align-items: flex-start;
	}
	
}
@media (max-width: 500px) {
  .statuses {
    flex-direction: column;
  }
}

.header.fixed {
  position: fixed;
}

.header__info-city-btn {
  display: flex;
  align-items: center;
}

.popup {
  height: 100vh;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 100%;
  z-index: 2000;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  background: rgba(0, 8, 84, 0.27);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: none;
}

.popup.active {
  display: block;
}

.popup__body {
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 15px 20px;
}

.popup.open {
  opacity: 1;
  pointer-events: all;
}
.popup-message {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}
.popup-message p {
	line-height: 20px;
}
.popup-message__bottom {
    display: flex;
    gap: 10px;
}
.popup__content {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 24px;
  scale: 0.3;
  transition: scale 0.4s ease;
  background-color: #fff;
  box-shadow: 0px 0px 30px 0px rgba(255, 255, 255, 0.1);
}

.popup-mark-fields .popup__content {
	max-width: 900px;
}
.popup-mark-fields .result-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.fields-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
}
.popup-risks .popup__content {
	max-width: 500px;
}
.popup-risks .result-wrapper {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.popup-heading {
    color: rgb(50 158 185);
    font-size: 22px;
}
.popup-risks textarea {
	resize: vertical;
	max-width: 452px;
	padding: 16px;
	border-radius: 8px;
	border: 1px solid #eee;
}
.popup-problem .result-wrapper {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.popup-problem .popup__content {
	max-width: 500px;
}
.popup-problem textarea {
	resize: vertical;
	max-width: 452px;
	padding: 16px;
	border-radius: 8px;
	border: 1px solid #eee;
}
.popup-problem-fixed .result-wrapper {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.popup-problem-fixed .popup__content {
	max-width: 500px;
}
.popup-problem-fixed textarea {
	resize: vertical;
	max-width: 452px;
	padding: 16px;
	border-radius: 8px;
	border: 1px solid #eee;
}
.anketa-item__edit-input textarea {
	resize: vertical;
	padding: 16px;
	border-radius: 8px;
	border: 1px solid #eee;
	white-space: pre-line;
}
.reg-request:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border-radius: 8px;
}
.reg-request.rejected:before {
    content: 'Отклонена';
    color: #fff;
    background: rgb(240 74 37 / 71%);
}
.reg-request.accepted:before {
    content: 'Принята';
    color: #fff;
    background: rgb(21 94 171)ba;
}
.popup.open .popup__content {
  scale: 1;
}
.decline-text {
	color: red;
}
.accept-text {
    color: green;
}
.close-popup {
    position: absolute;
    top: 5px;
    right: 0px;
    width: 24px;
    cursor: pointer;
    height: 24px;
    transition: width 0.3s 
linear, height 0.3s 
linear, top 0.3s 
linear, right 0.3s 
linear;
}
.status.status-1.add-to-blacklist.added-to-blacklist {
    background: #000;
    color: #fff;
}
/*
@media (hover: hover) {
  .close-popup:hover {
    width: 20px;
    height: 20px;
    top: 20px;
    right: 20px;
  }
}
*/