/*--- VARIABLES ---*/
/*--- VARIABLES ---*/
/*--- COMMON ---*/
body {
  font-family: "Heebo", sans-serif;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 50px 20px;
}

.btn {
  display: block;
  border: none;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  border-radius: 15px;
  background: #5822A8;
  box-shadow: 0px 3.5px 5.5px 0px rgba(0, 0, 0, 0.02);
  box-sizing: border-box;
  padding: 18px 40px;
  color: #fff;
  cursor: pointer;
}
@media (max-width: 767px) {
  .btn {
    padding: 16px 40px;
  }
}

.wrapper-main {
  background-color: #F0F0F0;
}

/*--- COMMON ---*/
/*--- AUTHORIZATION ---*/
.container-authorization {
  padding: 0;
}

.authorization-content {
  display: flex;
  align-items: flex-start;
  height: 100vh;
}
@media (max-width: 1439px) {
  .authorization-content {
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .authorization-content {
    flex-direction: column;
  }
}
.authorization-content__form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 686px;
  height: 100vh;
  overflow-y: scroll;
  box-sizing: border-box;
  padding: 70px 0;
}
@media (max-width: 1439px) {
  .authorization-content__form {
    width: 47%;
  }
}
@media (max-width: 991px) {
  .authorization-content__form {
    padding: 70px 20px;
  }
}
@media (max-width: 767px) {
  .authorization-content__form {
    width: 100%;
    height: auto;
    padding: 30px 20px;
  }
}
.authorization-content__form::-webkit-scrollbar {
  width: 8px;
}
.authorization-content__form::-webkit-scrollbar-track {
  background: linear-gradient(206deg, #8B22C1 9.35%, #5822A8 54.31%);
}
@media (max-width: 767px) {
  .authorization-content__form::-webkit-scrollbar-track {
    background: none;
  }
}
.authorization-content__form::-webkit-scrollbar-thumb {
  background-color: #bec1f1;
  border-radius: 20px;
}
.authorization-content__illustr {
  width: 754px;
  height: 100%;
  background: linear-gradient(206deg, #8B22C1 9.35%, #5822A8 54.31%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 50px 0;
}
@media (max-width: 1439px) {
  .authorization-content__illustr {
    width: 53%;
  }
}
@media (max-width: 767px) {
  .authorization-content__illustr {
    display: none;
  }
}

.header-authorization {
  width: 370px;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .header-authorization {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .header-authorization {
    width: 100%;
  }
}

.body-authorization__title {
  color: #5822A8;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  margin-bottom: 33px;
}

.form-authorization {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
  width: 400px;
}
@media (max-width: 991px) {
  .form-authorization {
    width: 100%;
  }
}
.form-authorization__group {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.form-authorization__group label {
  position: relative;
  color: #2D3748;
  font-size: 14px;
  font-weight: 500;
  margin-left: 21px;
  margin-bottom: 7px;
}
.form-authorization__group label::after {
  position: absolute;
  content: "*";
  font-weight: 400;
  color: rgb(245, 20, 20);
  top: -2px;
  margin-left: 2px;
}
.form-authorization__group:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .form-authorization__group:not(:last-child) {
    margin-bottom: 16px;
  }
}
.form-authorization__input {
  width: 100%;
  color: #5822A8;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 15px;
  border: 1px solid #56249A;
  background: var(--black-amp-white-white, #FFF);
  box-shadow: 0px 3.5px 5.5px 0px rgba(0, 0, 0, 0.02);
  box-sizing: border-box;
  padding: 18px 0 18px 21px;
  outline: none;
}
@media (max-width: 767px) {
  .form-authorization__input {
    padding: 14px 0 14px 16px;
  }
}
.form-authorization__input::-moz-placeholder {
  color: #718096;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.form-authorization__input::placeholder {
  color: #718096;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.form-authorization__input:focus {
  border: 1px solid #07be63;
}
.form-authorization .btn {
  width: 100%;
  margin-top: 73px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .form-authorization .btn {
    margin-top: 20px;
  }
}
.form-authorization .btn:disabled {
  background: #969AF3;
}

.load-registration {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.load-registration__item {
  width: 76px;
  height: 6px;
  border-radius: 5px;
  background: #D9D9D9;
}

.load-active {
  background: #5822A8;
}

.remember-password {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #2D3748;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}
.remember-password:hover {
  color: #5822A8;
  text-decoration: underline;
}

.footer-content {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.footer-content__text {
  margin-right: 8px;
  line-height: 150%;
}
.footer-content__authorization {
  color: #5822A8;
  font-weight: 700;
  line-height: 150%;
  text-decoration: none;
}

.technologies-image {
  width: 468px;
  margin: 0 auto;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .technologies-image {
    width: 80%;
  }
}
.technologies-image img {
  width: 100%;
}

.technologies-text {
  width: 342px;
  color: #FFF;
  font-family: "Raleway", sans-serif;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.technologies-text span {
  font-weight: 700;
  font-family: "Heebo", sans-serif;
}

/*--- AUTHORIZATION ---*/
/*--- MANAGEMENT ---*/
.management {
  background-color: #F0F0F0;
}

.container-management {
  padding: 25px 40px 25px 25px;
}
@media (max-width: 1239px) {
  .container-management {
    padding: 20px;
  }
}

.management-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100%;
}
@media (max-width: 1110px) {
  .management-content {
    flex-direction: column;
  }
}
.management-content--analizator {
  align-items: flex-start;
}

.main-navigation {
  position: sticky;
  top: 25px;
  width: 265px;
  height: 100%;
  margin-right: 52px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 50px 22px;
  background-color: #fff;
  border-radius: 20px;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1239px) {
  .main-navigation {
    margin-right: 30px;
  }
}
@media (max-width: 1110px) {
  .main-navigation {
    position: relative;
    top: auto;
    width: 100%;
    padding: 0px 22px;
    height: 60px;
    padding-bottom: 10px;
    margin-right: 0px;
  }
}

.main-navigation--active {
  height: 100%;
}
@media (max-width: 1110px) {
  .main-navigation--active {
    height: 100vh;
  }
}

@media (max-width: 1110px) {
  .mainNavigation--mobile {
    height: auto;
  }
}

.main-navigation--active {
  width: 129px;
  background-color: #8B22C1;
}

.logo {
  margin-bottom: 82px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo__img {
  margin-top: 15px;
}
@media (max-width: 1110px) {
  .logo__img {
    position: absolute;
    margin-top: 0;
    top: 20px;
    left: 20px;
  }
}

.main-navigation-logo--active {
  display: none;
}

.burger {
  position: relative;
  width: 20px;
  height: 16px;
  font-size: 0;
  border: none;
  background-color: transparent;
  margin-right: 12px;
  cursor: pointer;
}
@media (max-width: 1110px) {
  .burger {
    position: absolute;
    top: 20px;
    right: 10px;
  }
}
.burger::before, .burger::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  background-color: #718096;
  border-radius: 4px;
}
.burger::before {
  top: 0;
}
.burger::after {
  bottom: 0;
}
.burger__line {
  position: absolute;
  width: 100%;
  height: 2px;
  top: calc(50% - 1px);
  left: 0;
  background-color: #718096;
}

.burger:hover::before:hover, .burger:hover::after:hover {
  background-color: rgb(99, 34, 173);
}

.burger--active {
  margin-left: 6px;
  margin-top: 15px;
}

.burger--active::before,
.burger--active::after {
  background-color: #F3DDFF;
}

.burger--active .burger__line {
  background-color: #F3DDFF;
}

@media (max-width: 1110px) {
  .menu-wrapper {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(0%);
  }
}

@media (max-width: 1110px) {
  .mainNavigation--mobile .menu-wrapper {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}

.menu-wrapper--active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu-list__link {
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: 15px 20px;
  text-decoration: none;
  color: #2D3748;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}
.menu-list__link:hover {
  color: #8522BE;
  text-decoration: underline;
}
.menu-list__link--active {
  border-radius: 15px;
  border: 1px solid #8422BE;
  color: #8522BE;
  font-size: 16px;
  font-weight: 700;
}
.menu-list__icon {
  margin-right: 12px;
  fill: #E4CDFD;
}
.menu-list__link:hover .menu-list__icon {
  fill: #6322AD;
}

.menu-list__link--active .menu-list__icon {
  fill: #6322AD;
}

.menu-icon {
  fill: #718096;
}

.menu-icon--active {
  fill: #E4CDFD;
}

.menu-list__title--active {
  display: none;
}

.menu-list__icon--active {
  margin-right: 0px;
  margin-left: 6px;
}

.menu:last-child {
  margin-top: 305px;
}
@media (max-width: 1110px) {
  .menu:last-child {
    margin-top: 0;
  }
}

.all-information {
  width: 100%;
  box-sizing: border-box;
  padding-top: 20px;
}
.all-information__header {
  display: flex;
  align-items: center;
  justify-content: right;
}

@media (max-width: 810px) {
  .search {
    width: 100%;
  }
}

.form-search {
  position: relative;
}
@media (max-width: 810px) {
  .form-search {
    width: 100%;
  }
}
.form-search__input {
  width: 640px;
  box-sizing: border-box;
  padding: 15px 20px;
  padding-left: 60px;
  background-color: #fff;
  border: none;
  outline: none;
  border-radius: 25px;
}
@media (max-width: 810px) {
  .form-search__input {
    width: 100%;
  }
}
.form-search__input::-moz-placeholder {
  color: #9395A4;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 400;
}
.form-search__input::placeholder {
  color: #9395A4;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 400;
}
.form-search__btn {
  position: absolute;
  top: calc(50% - 12px);
  left: 20px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  z-index: 5;
}

.notification {
  margin-left: 26px;
  margin-right: 7px;
  cursor: pointer;
}

.account {
  cursor: pointer;
}

.efficiency {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
@media (max-width: 850px) {
  .efficiency {
    flex-direction: column;
  }
}
.efficiency__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 37%;
  border-radius: 15px;
  border: 1.5px solid rgba(255, 255, 255, 0.87);
  background: linear-gradient(113deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.8) 110.84%);
  box-shadow: 0px 2px 5.5px 0px rgba(0, 0, 0, 0.02);
  -webkit-backdrop-filter: blur(44.5px);
          backdrop-filter: blur(44.5px);
}
@media (max-width: 850px) {
  .efficiency__item {
    width: 100%;
  }
}
.efficiency__item:last-child {
  display: block;
  box-sizing: border-box;
  padding: 15px;
  text-align: center;
  width: 21%;
}
@media (max-width: 850px) {
  .efficiency__item:last-child {
    width: 100%;
  }
}
@media (max-width: 850px) {
  .efficiency__item:not(:last-child) {
    margin-bottom: 20px;
  }
}
.efficiency__img {
  padding-top: 18px;
  cursor: pointer;
}
.efficiency__group {
  box-sizing: border-box;
  padding: 24px 0;
  width: 62%;
}
.efficiency__title {
  color: #2D3748;
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
}
.efficiency__text {
  color: #718096;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  margin-top: 13px;
}
.efficiency__link {
  text-decoration: none;
}

.circle {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 100%;
  background-color: #48BB78;
  text-align: center;
  margin-top: 30px;
  margin-left: 8%;
  cursor: pointer;
}
.circle--bad {
  background-color: #FF7455;
}
.circle--bad:hover {
  transition: background 0.25s ease-in-out;
  background-color: #fa9c87;
}
.circle--good {
  background-color: #48BB78;
}
.circle--good:hover {
  transition: background 0.25s ease-in-out;
  background-color: #5dd690;
}
.circle--csv {
  width: 45px;
  height: 45px;
  background: #8022BC;
  box-shadow: 0px 20px 30px 0px rgba(25, 28, 50, 0.1);
  margin: 0 auto;
  margin-top: 10px;
}
.circle--csv .efficiency__img {
  transform: translateY(-7px);
}
.circle--csv .circle-mask {
  left: -53px;
}

.circle-mask {
  position: absolute;
  width: 150px;
  top: 0;
  left: -45px;
  background-color: #fff;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 4px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  opacity: 0;
}
.circle-mask .cursor {
  position: absolute;
  top: 100%;
  left: calc(50% - 20px);
  display: inline-block;
  border: 20px solid transparent;
  border-top: 10px solid #fff;
}

.circle:hover .circle-mask {
  transition: all 0.2s ease-in-out;
  transform: translateY(-56px);
  opacity: 1;
}

.efficiency-quantity__text {
  display: flex;
  align-items: center;
  color: #718096;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}
.efficiency-quantity__text span {
  font-size: 36px;
  font-weight: 700;
  line-height: 150%;
  margin-right: 8px;
}
.efficiency-quantity__text .max {
  color: #48BB78;
}
.efficiency-quantity__text .min {
  color: #FF7455;
}

@media (max-width: 767px) {
  .wrapper-table {
    overflow: hidden;
    overflow-x: scroll;
  }
}

.table-people {
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0px 3.5px 5.5px 0px rgba(0, 0, 0, 0.02);
  box-sizing: border-box;
  padding: 20px 20px;
  margin-top: 30px;
  width: 100%;
}
@media (max-width: 1239px) {
  .table-people {
    padding: 20px 10px;
  }
}
@media (max-width: 767px) {
  .table-people {
    width: 767px;
  }
}

.table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 2px solid #E2E8F0;
}
.table-header__title {
  text-align: center;
}
.table-header__icon {
  box-sizing: border-box;
  padding: 4px;
  border-radius: 3px;
  background: #D9D9D9;
  margin-left: 8px;
  cursor: pointer;
}
.table-header__item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.table-tbody {
  width: 100%;
}
.table-tbody__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 2px 0;
  border-bottom: 2px solid #E2E8F0;
}

.name-column {
  width: 25%;
  display: flex;
  align-content: center;
}
@media (max-width: 991px) {
  .name-column {
    width: 32%;
  }
}
.name-column--director {
  width: 20%;
}
.name-column__link {
  display: flex;
  align-content: center;
}
.name-column__link:hover {
  text-decoration: underline;
}
.name-column__img {
  margin-right: 10px;
  width: 40px;
  height: 40px;
}
.name-column__group {
  width: 100%;
  margin-top: 6px;
}
.name-column__title {
  color: #2D3748;
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
}
.name-column__email {
  color: #718096;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.forecast-column {
  width: 18%;
}
.forecast-column--director {
  width: 23%;
}

.number-probability {
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
}
.number-probability__red {
  color: #FF7455;
}
.number-probability__green {
  color: #48BB78;
}

.load {
  position: relative;
  background: #E2E8F0;
  width: 100%;
  height: 3px;
}
.load__bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
}
.load__bg-green {
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  background: #48BB78;
}

.deportament-column {
  width: 20%;
  text-align: center;
}
.deportament-column--director {
  width: 10%;
}
.deportament-column__text {
  color: #718096;
  font-size: 12px;
  font-weight: 700;
  line-height: 150%;
}

.director-column {
  width: 20%;
  text-align: center;
}
.director-column__text {
  color: #718096;
  font-size: 12px;
  font-weight: 700;
  line-height: 150%;
}

.director-column-wrap {
  display: flex;
  position: relative;
}
.director-column-wrap__img {
  position: absolute;
  top: calc(50% - 17.75px);
  width: 35px;
  height: 35px;
  border-radius: 100%;
  z-index: 0;
  transform: translateX(50px);
}
.director-column-wrap__img:nth-child(2) {
  left: 17px;
  z-index: 2;
}
.director-column-wrap__img:nth-child(3) {
  left: 35px;
  z-index: 3;
}
.director-column-wrap__img:nth-child(4) {
  left: 52px;
  z-index: 4;
}
.director-column-wrap__img:nth-child(5) {
  left: 70px;
  z-index: 5;
}

.data-column {
  width: 15%;
  text-align: center;
}
.data-column--director {
  width: 10%;
}
@media (max-width: 991px) {
  .data-column {
    width: 8%;
  }
}
.data-column__text {
  color: #2D3748;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
}

.edit-column {
  width: 10%;
  display: flex;
  justify-content: center;
}
@media (max-width: 900px) {
  .edit-column {
    width: 7%;
  }
}
.edit-column__link:not(:last-child) {
  margin-right: 10px;
}

.edit-link__icon {
  fill: #E4CDFD;
}

.edit-link:hover .edit-link__icon {
  fill: #8B22C1;
}

.add-link__icon {
  fill: #E4CDFD;
}

.add-link:hover .add-link__icon {
  fill: #8B22C1;
}

.analizator {
  border-radius: 15px;
  border: 1.5px solid rgba(255, 255, 255, 0.87);
  background: linear-gradient(113deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.8) 110.84%);
  box-shadow: 0px 2px 5.5px 0px rgba(0, 0, 0, 0.02);
  -webkit-backdrop-filter: blur(44.5px);
          backdrop-filter: blur(44.5px);
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  margin-top: 50px;
}
@media (max-width: 1110px) {
  .analizator {
    margin-top: 30px;
  }
}

.load-analizator {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.load-analizator__title {
  color: #2D3748;
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 19px;
}
.load-analizator__text {
  color: #718096;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 28px;
}
.load-analizator__subtext {
  display: none;
  color: #718096;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 28px;
}

.analizator-form {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  border-radius: 15px;
  border: 1px solid #8B22C1;
  width: 400px;
  height: 220px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 20px;
}
@media (max-width: 575px) {
  .analizator-form {
    width: 100%;
  }
}
.analizator-form__file {
  display: none;
}
.analizator-form__label {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #8022BC;
  box-shadow: 0px 20px 30px 0px rgba(25, 28, 50, 0.1);
  text-align: center;
  margin: 0 auto;
  cursor: pointer;
}
.analizator-form__alert {
  text-align: center;
  color: #718096;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  margin-top: 20px;
}
.analizator-form__img {
  transform: translateY(12px);
}
.analizator-form .btn {
  padding: 18px;
}
.analizator-form .btn:disabled {
  background: #969AF3;
  box-shadow: 0px 3.5px 5.5px 0px rgba(0, 0, 0, 0.02);
}

.analizator--save {
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  padding: 50px 90px;
}
@media (max-width: 888px) {
  .analizator--save {
    flex-direction: column;
    padding: 50px;
  }
}
@media (max-width: 575px) {
  .analizator--save {
    padding: 30px 20px;
  }
}

.analizator-form--save {
  width: 100%;
  height: auto;
  padding-bottom: 20px;
  margin: 0 auto;
}

.btn--save {
  display: none;
}

.analizator-form__label--save {
  width: auto;
  height: auto;
  border-radius: none;
  background: transparent;
  box-shadow: none;
  text-align: auto;
}

.analizator-form__img--save {
  display: none;
  width: 47px;
}

.load-analizator--save {
  width: 165px;
  margin-right: 57px;
}
@media (max-width: 888px) {
  .load-analizator--save {
    width: 100%;
    margin-right: 0;
  }
}

.load-analizator__text--save {
  display: none;
}

.load-analizator__subtext--save {
  display: block;
  margin-top: 10px;
}

.save-analizator {
  display: none;
  width: 55%;
}
@media (max-width: 1439px) {
  .save-analizator {
    width: 60%;
  }
}
@media (max-width: 1300px) {
  .save-analizator {
    width: 65%;
  }
}
@media (max-width: 888px) {
  .save-analizator {
    width: 90%;
  }
}
@media (max-width: 575px) {
  .save-analizator {
    width: 100%;
  }
}
.save-analizator__title {
  color: #2D3748;
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
  text-align: center;
  margin-bottom: 26px;
}

.save-form__group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.save-form__label {
  color: #718096;
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 150%;
  margin-right: 7px;
  width: 85px;
}
.save-form__select {
  border-radius: 5px;
  border: 1px solid #737B8B;
  width: 359px;
  height: 36px;
  box-sizing: border-box;
  padding-left: 10px;
  outline: none;
  color: #718096;
  cursor: pointer;
}
@media (max-width: 888px) {
  .save-form__select {
    width: 85%;
  }
}
.save-form__select:focus {
  border: 1px solid #07be63;
}
.save-form__massage {
  width: 359px;
  height: 80px;
  box-sizing: border-box;
  padding: 14px 10px;
  border-radius: 5px;
  border: 1px solid #737B8B;
  outline: none;
  resize: vertical;
  outline: none;
}
@media (max-width: 888px) {
  .save-form__massage {
    width: 85%;
  }
}
.save-form__massage:focus {
  border: 1px solid #07be63;
}
.save-form__massage::-moz-placeholder {
  font-family: "Raleway", sans-serif;
  color: #718096;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
}
.save-form__massage::placeholder {
  font-family: "Raleway", sans-serif;
  color: #718096;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
}
.save-form .btn {
  width: 200px;
  text-align: center;
  box-sizing: border-box;
  padding: 16px 52px;
  border-radius: 40px;
  background: #8B22C1;
  box-shadow: 0px 20px 30px 0px rgba(25, 28, 50, 0.1);
  margin-left: auto;
}

.save-analizator--send {
  display: block;
}

.wrapper-table--none {
  display: none;
}

.wrapper-table--block {
  display: block;
}

/*--- MANAGEMENT ---*/
/*--- PERSON ---*/
.wrapper-person-analizator {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
@media (max-width: 818px) {
  .wrapper-person-analizator {
    flex-direction: column-reverse;
  }
}

.about-chart {
  width: 70%;
  margin-top: 44px;
}
@media (max-width: 1240px) {
  .about-chart {
    width: 66%;
  }
}
@media (max-width: 818px) {
  .about-chart {
    width: 100%;
  }
}
.about-chart__body {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}
@media (max-width: 767px) {
  .about-chart__body {
    flex-direction: column;
  }
}
.about-chart__illustration {
  width: 66%;
}
@media (max-width: 1240px) {
  .about-chart__illustration {
    width: 65%;
  }
}
@media (max-width: 767px) {
  .about-chart__illustration {
    width: 100%;
  }
}
.about-chart__other {
  width: 30%;
}
@media (max-width: 1240px) {
  .about-chart__other {
    width: 32%;
  }
}
@media (max-width: 767px) {
  .about-chart__other {
    width: 100%;
  }
}

.chart-header {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1240px) {
  .chart-header {
    flex-wrap: wrap;
  }
}
.chart-header__column {
  width: 30%;
}
@media (max-width: 1320px) {
  .chart-header__column {
    width: 31%;
  }
}
@media (max-width: 1288px) {
  .chart-header__column {
    width: 31.5%;
  }
}
@media (max-width: 1274px) {
  .chart-header__column {
    width: 32%;
  }
}
@media (max-width: 1260px) {
  .chart-header__column {
    width: 26.5%;
  }
}
@media (max-width: 1240px) {
  .chart-header__column {
    width: 100%;
  }
}
@media (max-width: 1095px) {
  .chart-header__column {
    width: 30%;
  }
}
@media (max-width: 1040px) {
  .chart-header__column {
    width: 100%;
  }
}
.chart-header__column:not(:last-child) {
  margin-bottom: 10px;
}
.chart-header__text {
  color: #2D3748;
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 14px;
}
.chart-header__group {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 12px 30px;
  border-radius: 15px;
  background: #E4CDFD;
}
.chart-header__number {
  color: #000;
  font-size: 36px;
  font-weight: 500;
  line-height: 140%;
  margin-right: 18px;
}
.chart-header__percent {
  color: #2D3748;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
  box-sizing: border-box;
  padding: 2px 20px;
  background: #E2E8F0;
  border-radius: 15px;
  border: 1px solid #48BB78;
}

.card {
  width: 28%;
}
@media (max-width: 1240px) {
  .card {
    width: 31%;
  }
}
@media (max-width: 818px) {
  .card {
    width: 100%;
    margin-top: 20px;
  }
}

.card-person {
  border-radius: 15px;
  border: 1.5px solid rgba(255, 255, 255, 0.87);
  background: linear-gradient(113deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.8) 110.84%);
  box-shadow: 0px 2px 5.5px 0px rgba(0, 0, 0, 0.02);
  -webkit-backdrop-filter: blur(44.5px);
          backdrop-filter: blur(44.5px);
  box-sizing: border-box;
  padding: 20px;
}
.card-person__title {
  color: #2D3748;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  text-align: center;
}
.card-person__avatar {
  width: 70px;
  height: 70px;
  border-radius: 50px;
  border: 1px solid #8422BE;
  background: #E2E8F0;
  text-align: center;
  margin: 0 auto;
  margin-top: 26px;
  margin-bottom: 18px;
}
.card-person__img {
  width: 75%;
  transform: translateY(5px);
}
.card-person__group {
  display: flex;
  margin-top: 10px;
}
.card-person__text {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  width: 100%;
}
.card-person__text span {
  font-weight: 500;
  width: 95px;
}
.card-person__percent {
  color: #FF7455;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  margin-top: 11px;
  margin-bottom: 14px;
  text-align: center;
}
.card-person__load {
  position: relative;
  width: 65%;
  height: 3px;
  margin: 0 auto;
  background: #E2E8F0;
}
.card-person__load-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 3px;
  background: #FF7455;
}

.line {
  width: 100%;
  height: 1px;
  background: #E4CDFD;
  margin-top: 25px;
  margin-bottom: 18px;
}

.massage-after-work {
  margin-top: 40px;
}
.massage-after-work__title {
  color: #2D3748;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  padding-bottom: 20px;
}
.massage-after-work__area {
  width: 80%;
  margin: 0 auto;
  border-radius: 15px;
  background: #FF7455;
  box-sizing: border-box;
  padding: 8px 20px;
  text-align: center;
}
.massage-after-work__number {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
}

.volume-ratio__title {
  color: #2D3748;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 20px;
}
.volume-ratio__text {
  color: #2D3748;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 10px;
  text-align: center;
}

.volume-ratio-area {
  box-sizing: border-box;
  padding: 10px;
  border-radius: 15px;
  background: #E4CDFD;
}

.volume-ratio-group {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.volume-ratio-group__min {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 48%;
  border-radius: 15px;
  background: #33545F;
  box-sizing: border-box;
  padding: 10px;
  text-align: center;
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
}
.volume-ratio-group__max {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 48%;
  height: 90px;
  border-radius: 15px;
  background: #33545F;
  box-sizing: border-box;
  padding: 10px;
  text-align: center;
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
}

.time-reading {
  margin-top: 36px;
}
.time-reading__title {
  color: #2D3748;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 20px;
}
.time-reading__area {
  width: 100%;
  margin: 0 auto;
  border-radius: 15px;
  background: #FF7455;
  box-sizing: border-box;
  padding: 8px 20px;
  text-align: center;
}
.time-reading__nember {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
}

.wrapper-select-data {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.select-data-text {
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  margin-right: 10px;
}

.select-data {
  width: 185px;
  height: 32px;
  border-radius: 20px;
  background: #D9D9D9;
  border: none;
  box-sizing: border-box;
  padding: 0 10px;
  text-align: center;
  cursor: pointer;
}

.person-analizator-info {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-top: 30px;
}
@media (max-width: 888px) {
  .person-analizator-info {
    justify-content: space-between;
  }
}
.person-analizator-info__column {
  width: 22%;
}
@media (max-width: 888px) {
  .person-analizator-info__column {
    width: 48%;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .person-analizator-info__column {
    width: 100%;
  }
}
.person-analizator-info__column {
  margin-right: 2.5%;
}
@media (max-width: 888px) {
  .person-analizator-info__column {
    margin-right: 0;
  }
}
.person-analizator-info__column:last-child {
  margin-left: 2%;
}
@media (max-width: 888px) {
  .person-analizator-info__column:last-child {
    margin-left: 0%;
  }
}

.later-deadline__title {
  color: #2D3748;
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 16px;
}

.later-deadline-area {
  background: #FF7455;
}
.later-deadline-area__number {
  color: #FFF;
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  line-height: 140%;
  margin-right: 18px;
}
.later-deadline-area__percent {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  border-radius: 15px;
  border: 1px solid #48BB78;
  background: #76CE9B;
  box-sizing: border-box;
  padding: 2px 30px;
  text-align: center;
}

.number-characters__title {
  color: #2D3748;
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 16px;
}

.number-characters-area {
  background: #E4CDFD;
}
.number-characters-area__number {
  color: #000;
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  line-height: 140%;
  margin-right: 18px;
}
.number-characters-area__percent {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  border-radius: 15px;
  border: 1px solid #48BB78;
  background: #E2E8F0;
  box-sizing: border-box;
  padding: 2px 30px;
  text-align: center;
}

.massage-signs__title {
  color: #2D3748;
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 16px;
}

.massage-signs-area {
  background: #FF7455;
}
.massage-signs-area__number {
  color: #FFF;
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  line-height: 140%;
  margin-right: 18px;
}
.massage-signs-area__percent {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  border-radius: 15px;
  border: 1px solid #48BB78;
  background: #76CE9B;
  box-sizing: border-box;
  padding: 2px 30px;
  text-align: center;
}

.massage-answer__title {
  color: #2D3748;
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 16px;
}

.massage-answer-area {
  background: #E4CDFD;
}
.massage-answer-area__number {
  color: #000;
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  line-height: 140%;
  margin-right: 18px;
}
.massage-answer-area__percent {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  border-radius: 15px;
  border: 1px solid #48BB78;
  background: #E2E8F0;
  box-sizing: border-box;
  padding: 2px 30px;
  text-align: center;
}

.area {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

.massage-adress__title {
  color: #2D3748;
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 14px;
}

.hidden-copy {
  display: flex;
  align-items: center;
}
.hidden-copy__text {
  color: #2D3748;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  margin-right: 10px;
}
.hidden-copy__load {
  border-radius: 15px;
  background: #969AF3;
  width: 87px;
  height: 11px;
}
.hidden-copy__group {
  display: flex;
  margin-left: auto;
}
.hidden-copy__number {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  margin-right: 10px;
}
.hidden-copy__percent {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 1px 10px;
  border-radius: 15px;
  border: 1px solid #48BB78;
  background: #E2E8F0;
  color: #2D3748;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
  width: 70px;
}

.copy {
  margin-top: 10px;
  display: flex;
  align-items: center;
}
.copy__text {
  color: #2D3748;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  margin-right: 10px;
}
.copy__load {
  border-radius: 15px;
  background: #969AF3;
  width: 166px;
  height: 11px;
  margin-left: 55px;
}
.copy__group {
  display: flex;
  margin-left: auto;
}
.copy__number {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  margin-right: 10px;
}
.copy__percent {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 1px 10px;
  border-radius: 15px;
  border: 1px solid #FF7455;
  background: #E2E8F0;
  color: #2D3748;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
  width: 70px;
}

.analizator-Chart {
  margin-top: 40px;
}
.analizator-Chart__title {
  color: #2D3748;
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 10px;
}
/*--- // PERSON ---*/
/*--- PAGINATION---*/
.pagination {
  width: 250px;
  display: flex;
  margin: 0 auto;
  margin-top: 20px;
}
.pagination__link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #303030;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  border: 1px solid #303030;
}
.pagination__link:hover {
  background-color: #8522BE;
  border: 1px solid #8522BE;
  color: #fff;
}
.pagination__link--active {
  background-color: #8522BE;
  border: 1px solid #8522BE;
  color: #fff;
}
.pagination__item:not(:last-child) {
  margin-right: 8px;
}
.pagination__svg {
  fill: #303030;
}
.pagination__link:hover .pagination__svg {
  fill: #fff;
}

/*--- PAGINATION---*/
