html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

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

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Rubik", --apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  min-height: 100vh;
  line-height: 140%;
  color: #313131;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  padding: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 15px;
}

.logo {
  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;
  gap: 25px;
  line-height: 1;
  font-weight: 600;
  font-size: 48px;
  color: #ADADAD;
  text-transform: uppercase;
}
.logo img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (any-hover: hover) {
  .logo:hover img {
    -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

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

.content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.filters-page {
  gap: 30px;
}

.button-back {
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #313131;
}
.button-back img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (any-hover: hover) {
  .button-back:hover img {
    -webkit-transform: translateX(-5px);
        -ms-transform: translateX(-5px);
            transform: translateX(-5px);
  }
}

.main-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.id {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 11px;
  line-height: normal;
  color: #ADADAD;
}

.document {
  display: grid;
  grid-template-columns: 22px auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-size: 10px;
  line-height: normal;
}
.document img {
  grid-row: span 2;
}

.button {
  border-radius: 15px;
  background: transparent;
  border: 2px solid #313131;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 13px 26px;
  font-size: 18px;
  font-weight: 500;
  color: #313131;
}
.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.button--save {
  background: #FFEB00;
  border: none;
}
.button--cancel {
  background: #D9D9D9;
  border: none;
}

.header__wrap {
  padding-top: 50px;
  margin-bottom: 50px;
  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;
  gap: 25px 50px;
}
.header__search {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__search input {
  width: 100%;
  padding: 25px 20px;
  outline: none;
  border: 2px solid #ADADAD;
  border-radius: 15px;
  font-family: inherit;
  font-size: 24px;
  line-height: 1;
  color: #7E7E7E;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.header__search input::-webkit-input-placeholder {
  color: #ADADAD;
}
.header__search input::-moz-placeholder {
  color: #ADADAD;
}
.header__search input:-ms-input-placeholder {
  color: #ADADAD;
}
.header__search input::-ms-input-placeholder {
  color: #ADADAD;
}
.header__search input::placeholder {
  color: #ADADAD;
}
@media (any-hover: hover) {
  .header__search input:hover {
    border-color: #7E7E7E;
  }
}
.header__search input:focus {
  border-color: #7E7E7E;
}
.header__search input::-webkit-search-cancel-button {
  cursor: pointer;
  font-size: 28px;
}
.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 45px;
}
.header__actions a {
  position: relative;
}
.header__actions a .notifications {
  position: absolute;
  top: 3px;
  right: 7px;
  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;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 18px;
  color: #7E7E7E;
}
@media (any-hover: hover) {
  .header__actions a:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.header__actions img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

@media screen and (max-width: 1200px) {
  .header__wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .header__search {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.site-sections {
  margin-bottom: 45px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 310px));
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.site-sections__item {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 5px 10px;
  color: #000;
  font-weight: 500;
  font-size: 22px;
  -webkit-transition: -webkit-text-decoration 0.3s ease;
  transition: -webkit-text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease, -webkit-text-decoration 0.3s ease;
}
.site-sections__item:has(span) img {
  grid-row: span 2;
}
.site-sections__item:has(span) span {
  color: #7E7E7E;
  font-weight: 400;
  font-size: 16px;
}
@media (any-hover: hover) {
  .site-sections__item:hover {
    text-decoration: underline;
  }
}

.banners {
  gap: 35px;
}

.banner {
  padding: 25px 35px;
  border-radius: 15px;
  background: #F2F2F2;
  min-height: 360px;
  color: #ADADAD;
}
.banner--date {
  width: min(100%, 600px);
}
.banner--date .month {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}
.banner--date .days {
  margin-bottom: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}
.banner--date .days input[type=radio] {
  display: none;
}
.banner--date .days input[type=radio]:checked + span {
  color: #000;
  margin-right: 8px;
}
.banner--date .days span {
  cursor: pointer;
  -webkit-transition: color 0.3s ease, margin-right 0.3s ease;
  transition: color 0.3s ease, margin-right 0.3s ease;
}
@media (any-hover: hover) {
  .banner--date .days span:not(:checked):hover {
    color: #000;
  }
}
.banner--date .banner__list {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.banner--notification {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.banner h3 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  color: #000;
}
.banner__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  font-size: 20px;
  line-height: 1.4;
}
.banner__list li {
  padding-bottom: 10px;
  border-bottom: 2px dashed #7E7E7E;
}
.banner__list li:has(a) a {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.4;
  -webkit-transition: -webkit-text-decoration 0.3s ease;
  transition: -webkit-text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease, -webkit-text-decoration 0.3s ease;
}
@media (any-hover: hover) {
  .banner__list li:has(a) a:hover {
    text-decoration: underline;
  }
}

.breadcrumbs {
  margin-bottom: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 11px;
  font-weight: 500;
  line-height: normal;
  color: #000;
}
.breadcrumbs li + li {
  margin-left: 5px;
}
.breadcrumbs li + li::before {
  content: "/";
  margin-right: 5px;
}
.breadcrumbs a {
  -webkit-transition: -webkit-text-decoration 0.3s ease;
  transition: -webkit-text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease, -webkit-text-decoration 0.3s ease;
}
@media (any-hover: hover) {
  .breadcrumbs a:hover {
    text-decoration: underline;
  }
}

.aside__filters {
  width: min(100%, 290px);
  background: #D9D9D9;
  border-radius: 20px;
  padding: 10px 10px 55px 10px;
  overflow: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.aside__filters::-webkit-scrollbar {
  display: none;
}

.filters {
  color: #000;
  font-weight: 500;
  line-height: normal;
}
.filters-field:not(:last-child) {
  margin-bottom: 20px;
}
.filters-field p {
  margin-bottom: 10px;
}
.filters-field .label input {
  padding: 2px 10px;
  width: 100%;
  outline: none;
  border-radius: 6px;
  background: none;
  border: 1px solid #7E7E7E;
  font-family: inherit;
  font-size: 12px;
  line-height: normal;
  color: #7E7E7E;
}
.filters-field .label input::-webkit-input-placeholder {
  color: #7E7E7E;
}
.filters-field .label input::-moz-placeholder {
  color: #7E7E7E;
}
.filters-field .label input:-ms-input-placeholder {
  color: #7E7E7E;
}
.filters-field .label input::-ms-input-placeholder {
  color: #7E7E7E;
}
.filters-field .label input::placeholder {
  color: #7E7E7E;
}
.filters-field--range {
  margin-top: 30px;
}
.filters-field--range span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.filters-field--range span input {
  width: 80px;
  padding: 2px 10px;
  outline: none;
  border-radius: 6px;
  background: none;
  border: 1px solid #7E7E7E;
  font-family: inherit;
  font-size: 12px;
  line-height: normal;
  color: #7E7E7E;
}
.filters-field--range span input::-webkit-input-placeholder {
  color: #7E7E7E;
}
.filters-field--range span input::-moz-placeholder {
  color: #7E7E7E;
}
.filters-field--range span input:-ms-input-placeholder {
  color: #7E7E7E;
}
.filters-field--range span input::-ms-input-placeholder {
  color: #7E7E7E;
}
.filters-field--range span input::placeholder {
  color: #7E7E7E;
}
.filters-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.filters-radio input[type=radio] {
  display: none;
}
.filters-radio input[type=radio]:checked + span::before {
  background: #7E7E7E;
}
@media (any-hover: hover) {
  .filters-radio input[type=radio]:not(:checked):hover + span::before {
    border-color: #ADADAD;
  }
}
.filters-radio span {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-size: 12px;
  line-height: 0;
}
.filters-radio span::before {
  content: "";
  padding: 2px;
  border-radius: 4px;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #9F9F9F;
  background: transparent;
  -webkit-transition: border-color 0.3s ease, background 0.3s ease;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.results__info {
  color: #7E7E7E;
  font-size: 18px;
  line-height: 130%;
}
.results__info p {
  margin-bottom: 15px;
}
.results__info span {
  color: #313131;
}
.results__list {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.results__sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 40px;
}

.sort {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  color: #7E7E7E;
  font-size: 18px;
  line-height: 130%;
}
.sort li {
  cursor: pointer;
  position: relative;
}
.sort li.selected span {
  color: #313131;
  font-weight: 600;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .sort li:hover::after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .sort li:hover .sort__sublist {
    opacity: 1;
    z-index: 1;
    top: 100%;
  }
}
.sort li.active::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.sort li.active .sort__sublist {
  opacity: 1;
  z-index: 1;
  top: 100%;
}
.sort > li::after {
  content: "";
  position: absolute;
  top: 0;
  right: -25px;
  width: 25px;
  height: 25px;
  display: block;
  background: url(../images/icons/icon-arrow-down.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.sort ul {
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  padding: 15px 12px;
  background: #fff;
  min-width: 200px;
  color: #313131;
  line-height: 1.75;
  -webkit-transition: opacity 0.3s ease, top 0.3s ease;
  transition: opacity 0.3s ease, top 0.3s ease;
  opacity: 0;
}
.sort ul li {
  cursor: pointer;
  -webkit-transition: -webkit-text-decoration 0.3s ease;
  transition: -webkit-text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease, -webkit-text-decoration 0.3s ease;
}
@media (any-hover: hover) {
  .sort ul li:hover {
    text-decoration: underline;
  }
}

.card {
  border-radius: 10px;
  background: #FFF;
  -webkit-box-shadow: 5px 5px 10px #CFCFCF;
          box-shadow: 5px 5px 10px #CFCFCF;
  padding: 30px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.card__image {
  border-radius: 5px;
  background: #D9D9D9;
}
.card__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.card__content h3 {
  color: #000;
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 4px;
}
.card__content p {
  color: #7E7E7E;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
}
.card__status {
  margin-top: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  color: #7E7E7E;
  font-size: 16px;
  line-height: 18px;
}

.settings {
  margin-top: 60px;
}
.settings h2 {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  color: #7E7E7E;
}
.settings__wrap {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(var(--count), 80px);
  gap: 30px 80px;
}
.settings__item {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.settings__item span {
  color: #313131;
  font-size: 16px;
  line-height: 22px;
  display: none;
}
.settings__item img {
  opacity: 0.4;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.settings__item.selected span {
  display: block;
}
.settings__item.selected img {
  opacity: 1;
}
.settings__editor {
  padding: 25px 25px;
  border-radius: 15px;
  background: #F2F2F2;
  min-height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.settings__editor-inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.settings__editor-inner.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.settings__editor-inner h3 {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  color: #313131;
}
.settings__editor-inner label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 12px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  color: #313131;
  position: relative;
}
.settings__editor-inner input[type=radio] {
  display: none;
}
.settings__editor-inner input[type=radio] + label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #313131;
}
.settings__editor-inner input[type=radio] + label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #313131;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.settings__editor-inner input[type=radio]:checked + label::after {
  opacity: 1;
}
.settings__editor-default.hidden {
  display: none;
}
.settings__editor-default h2 {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  color: #000;
}
.settings__editor-default h4 {
  margin-top: 60px;
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  color: #ADADAD;
}
.settings__editor-default h4:first-of-type {
  margin-top: 5px;
}
.settings__editor-default > div {
  font-size: 20px;
  line-height: 1.4;
}
@media (any-hover: hover) {
  .settings__editor-default > div a:hover {
    text-decoration: underline;
  }
}
.settings__editor-default .media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.settings__editor-default .media img {
  border-radius: 15px;
  background: #D9D9D9;
}
.settings__placeholder {
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  color: #313131;
}
.settings__save {
  margin-top: auto;
}
.settings .card-search {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
.settings .card-search input {
  width: 100%;
  outline: none;
  border: 1px solid #ADADAD;
  border-radius: 5px;
  background: transparent;
  padding: 4px 12px 4px 28px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  color: #7E7E7E;
}
.settings .card-search .search-icon {
  position: absolute;
  top: 50%;
  left: 4px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 1600px) {
  .settings__wrap {
    grid-template-columns: repeat(auto-fill, 80px);
  }
}
.single-card {
  margin-top: 25px;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 30px 40px;
}
.single-card h1 {
  grid-column: span 2;
  font-size: 30px;
  line-height: 1.4;
  color: #313131;
}
.single-card__aside-wrap {
  display: grid;
  grid-template-columns: 140px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.single-card__aside-wrap a {
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  line-height: 1.4;
  color: #7E7E7E;
  padding-bottom: 4px;
  border-bottom: 2px dashed #7E7E7E;
}
.single-card__content .settings {
  margin-top: 0;
}

.aside-banners {
  padding: 0 0;
  border-radius: 15px;
  background: #F2F2F2;
  margin-top: 85px;
}
.aside-banners__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.aside-banners__buttons button {
  cursor: pointer;
  padding: 5px 20px;
  border-radius: 15px;
  background-color: transparent;
  -webkit-box-shadow: 1px 3px 4px transparent;
          box-shadow: 1px 3px 4px transparent;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ADADAD;
  font-size: 22px;
  line-height: 1.5;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media (any-hover: hover) {
  .aside-banners__buttons button:not(.active):hover {
    color: #313131;
  }
}
.aside-banners__buttons button.active {
  background-color: #ADADAD;
  color: #313131;
  -webkit-box-shadow: 1px 3px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 1px 3px 4px rgba(0, 0, 0, 0.25);
}
.aside-banners__content {
  margin-top: 50px;
  padding: 0 12px 24px;
  display: none;
}
.aside-banners__content.active {
  display: block;
}
.aside-banners__content .list {
  margin-top: 30px;
  margin-bottom: 20px;
}
.aside-banners__content .list p {
  font-size: 19px;
  line-height: 1.4;
  color: #ADADAD;
}
.aside-banners__content .list p:last-of-type {
  padding-bottom: 5px;
  border-bottom: 2px dashed #ADADAD;
}
.aside-banners__content .list button {
  cursor: pointer;
  display: block;
  margin: 15px auto 0;
  text-align: center;
  color: #ADADAD;
  font-size: 15px;
  line-height: 1.5;
  -webkit-transition: color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: color 0.3s ease, box-shadow 0.3s ease;
  transition: color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media (any-hover: hover) {
  .aside-banners__content .list button:not(.active):hover {
    color: #313131;
  }
}
.aside-banners__content .current-month {
  margin-bottom: 20px;
  text-align: center;
  font-size: 22px;
  line-height: 1.5;
  color: #ADADAD;
}
.aside-banners__content .upcoming-title {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #ADADAD;
  letter-spacing: 1px;
}
.aside-banners__content .upcoming-list {
  margin-bottom: 15px;
}
.aside-banners__content .upcoming-list__item {
  font-size: 14px;
  line-height: 1.4;
  color: #ADADAD;
}
.aside-banners__content .upcoming-list__item span {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}
.aside-banners__content .upcoming-list__item a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 10px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .aside-banners__content .upcoming-list__item a:hover {
    color: #313131;
  }
}
.aside-banners__content .full-calendar {
  padding-bottom: 2px;
  border-bottom: 2px dashed #ADADAD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  line-height: 1.5;
  color: #ADADAD;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .aside-banners__content .full-calendar:hover {
    color: #313131;
  }
}

.aside-info {
  padding: 10px 15px;
  border-radius: 15px;
  background: #F2F2F2;
  margin-top: 85px;
}
.aside-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 19px;
  line-height: 1.3;
  color: #7E7E7E;
}
.aside-info__item strong {
  color: #000;
}
.aside-info__item + .aside-info__item {
  margin-top: 50px;
}
.aside-info a {
  margin-top: 75px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  padding-bottom: 2px;
  border-bottom: 2px dashed #000;
  color: #000;
}

.calendar {
  padding: 25px;
  background: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.3);
          box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.3);
  font-size: 12px;
  line-height: normal;
}
.calendar.hidden {
  display: none;
}
.calendar h4 {
  margin-bottom: 15px;
  font-size: 15px;
}
.calendar__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
}
.calendar__row + .calendar__row {
  margin-top: 8px;
}
.calendar__days {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}
.calendar__day {
  font-size: 15px;
  font-weight: 500;
}
.calendar__day--header {
  font-size: 10px;
  color: #7E7E7E;
  text-transform: uppercase;
}
.calendar__day.sign {
  position: relative;
}
.calendar__day.sign::after {
  content: "";
  position: absolute;
  top: 0;
  right: 3px;
  width: 5px;
  height: 5px;
  background-color: #FFEB00;
  border-radius: 50%;
}
.calendar .prev,
.calendar .next {
  pointer-events: none;
  font-size: 18px;
  color: #ADADAD;
}
.calendar .prev.active,
.calendar .next.active {
  pointer-events: auto;
  color: #313131;
}

.aside__date {
  margin-bottom: 45px;
}
.aside__date h3 {
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
}
.aside__date-picker {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.aside__date-picker input {
  max-width: 80px;
  padding: 2px 4px;
  outline: none;
  border-radius: 5px;
  border: 1px solid #ADADAD;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}
.aside__date .toggle-calendar {
  margin: 5px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 11px;
  -webkit-text-decoration: underline dashed #ADADAD;
          text-decoration: underline dashed #ADADAD;
  color: #ADADAD;
  -webkit-transition: text-decoration-color 0.3s ease;
  transition: text-decoration-color 0.3s ease;
}
@media (any-hover: hover) {
  .aside__date .toggle-calendar:hover {
    text-decoration: none;
  }
}

.training-course:not(:first-child) {
  margin-top: 15px;
}
.training-course:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 1px solid #ADADAD;
}
.training-course__data {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-size: 12px;
  line-height: normal;
  color: #000;
}
.training-course__data label {
  position: relative;
}
.training-course__data label input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.training-course__data label input:checked + span {
  background: #7E7E7E;
}
.training-course__data label span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  border-radius: 4px;
  background: transparent;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media (any-hover: hover) {
  .training-course__data label span:hover {
    border-color: #7E7E7E;
  }
}
.training-course__date {
  font-size: 13px;
  font-weight: 500;
}
.training-course__amount {
  font-size: 12px;
}
.training-course__id {
  margin-left: 10px;
  font-size: 11px;
  color: #0E717E;
}
.training-course__name {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 12px;
  line-height: normal;
  color: #0E717E;
}
.training-course__name a {
  -webkit-transition: -webkit-text-decoration 0.3s ease;
  transition: -webkit-text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease, -webkit-text-decoration 0.3s ease;
}
@media (any-hover: hover) {
  .training-course__name:hover a {
    text-decoration: underline;
  }
}
.training-course__info.hidden {
  display: none;
}
.training-course__info-item {
  padding: 5px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 200px));
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 13px;
  line-height: normal;
  color: #000;
}
.training-course__info-item span {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.training-course__info-item .status {
  padding-left: 15px;
  position: relative;
  overflow: visible;
}
.training-course__info-item .status::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FFEB00;
}
.training-course__info-item .status.denied::before {
  background: #FF0C0C;
}
.training-course__info-item .status.ready::before {
  background: #79C55F;
}
.training-course__info-item .status::after {
  content: attr(data-info);
  position: absolute;
  top: -40px;
  left: 0;
  max-width: 200px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #D9D9D9;
  border-radius: 5px;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  padding: 5px 10px;
  font-size: 10px;
  color: #000;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
@media (any-hover: hover) {
  .training-course__info-item .status:hover::after {
    opacity: 1;
  }
}

.page-tabs {
  margin: 0;
  margin-bottom: 20px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-size: 15px;
  color: #000;
  line-height: normal;
}
.page-tabs li {
  cursor: pointer;
  padding: 12px 15px;
  border-radius: 10px;
  background: #D9D9D9;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.page-tabs li a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
.page-tabs li.active {
  background: #FFEB00;
}
@media (any-hover: hover) {
  .page-tabs li:not(.active):hover {
    background: #FFEB00;
  }
}

.page-management {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 45px;
  margin-bottom: 20px;
}
.page-management .hide-all {
  margin-left: auto;
}
.page-management--table {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 220px));
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.management {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #000;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .management:hover {
    color: #7E7E7E;
  }
}
.management span {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.management.select-all {
  font-weight: 500;
}
.management.select-all span::before {
  content: "";
  padding: 2px;
  border-radius: 4px;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  background: transparent;
  -webkit-transition: border-color 0.3s ease, background 0.3s ease;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.management.hide-all input[type=checkbox]:checked + span {
  text-decoration: underline;
}
.management.inactive {
  color: #ADADAD;
}
.management.inactive img {
  opacity: 0.3;
}
.management input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.management input[type=checkbox]:checked + span::before {
  background: #7E7E7E;
}

.education-table {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 200px));
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.education-table.col3 {
  grid-template-columns: repeat(3, minmax(120px, 220px));
  gap: 40px;
}
.education-table label input:not([type=checkbox]) {
  width: 100%;
  padding: 5px 10px;
  outline: none;
  border-radius: 6px;
  background: none;
  border: 1px solid #ADADAD;
  font-family: inherit;
  font-size: 10px;
  line-height: normal;
  color: #313131;
}
.education-table label input:not([type=checkbox])::-webkit-input-placeholder {
  color: #ADADAD;
}
.education-table label input:not([type=checkbox])::-moz-placeholder {
  color: #ADADAD;
}
.education-table label input:not([type=checkbox]):-ms-input-placeholder {
  color: #ADADAD;
}
.education-table label input:not([type=checkbox])::-ms-input-placeholder {
  color: #ADADAD;
}
.education-table label input:not([type=checkbox])::placeholder {
  color: #ADADAD;
}
.education-table--matrix {
  margin-top: 45px;
}
.education-table--matrix label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.education-table--matrix label input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.education-table--matrix label input[type=checkbox]:checked + span {
  background: #7E7E7E;
}
.education-table--matrix label span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #ADADAD;
  border-radius: 2px;
  background: transparent;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media (any-hover: hover) {
  .education-table--matrix label span:hover {
    border-color: #7E7E7E;
  }
}

.education__content {
  gap: 20px;
}
.education .button-back {
  margin-bottom: 20px;
}
.education .course-name {
  margin-top: 15px;
  font-size: 15px;
  letter-spacing: 3px;
  font-weight: 700;
  color: #000;
}
.education .id {
  margin-top: 5px;
  margin-bottom: 10px;
}
.education .course-list {
  margin-top: 20px;
}
.education .courses-info {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  font-size: 12px;
  line-height: normal;
  color: #000;
}
.education .courses-info .sort {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
.education .courses-info .sort > li::after {
  top: -3px;
  right: -25px;
  width: 20px;
  height: 20px;
}

.education__courses {
  margin-top: 20px;
}
.education__course {
  color: #000;
}
.education__course:not(:first-child) {
  margin-top: 15px;
}
.education__course:not(:last-child) {
  padding-bottom: 25px;
  border-bottom: 1px solid #000;
}
.education__course h3 {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: normal;
}
@media (any-hover: hover) {
  .education__course h3 a:hover {
    text-decoration: underline;
  }
}
.education__course-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-size: 12px;
  line-height: normal;
}
.education__course-info img {
  margin-right: 6px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.education__course-info + .education__course-info {
  margin-top: 5px;
}

.single-education-course {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 600px));
  gap: 80px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.single-education-course h1 {
  margin: 0;
  font-size: 20px;
  line-height: normal;
  color: #000;
}
.single-education-course__desc {
  margin-top: 20px;
}
.single-education-course__desc p {
  font-size: 16px;
  line-height: normal;
  color: #000;
}
.single-education-course__desc p + p {
  margin-top: 25px;
}
.single-education-course__related-info {
  margin-top: 45px;
}
.single-education-course__related-info h2 {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: normal;
  color: #000;
}
.single-education-course__related-info ul li {
  display: grid;
  grid-template-columns: auto minmax(200px, 0.5fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: normal;
  color: #000;
}
.single-education-course__related-info ul li > span {
  gap: 4px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-education-course__related-info ul li + li {
  margin-top: 15px;
}
.single-education-course__management .page-tabs {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  -webkit-box-align: initial;
      -ms-flex-align: initial;
          align-items: initial;
}
.single-education-course__management-info {
  color: #000;
}
.single-education-course__management-info h3 {
  margin: 0 0 15px;
  font-size: 14px;
  line-height: normal;
}
.single-education-course__management-info ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.single-education-course__management-info ul li p {
  font-size: 14px;
}
.single-education-course__management-info ul li + li {
  margin-top: 10px;
}
.single-education-course__edit {
  margin-top: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 13px;
  line-height: normal;
  color: #000;
  padding-bottom: 6px;
  border-bottom: 1px dashed #000;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
@media (any-hover: hover) {
  .single-education-course__edit:hover {
    border-color: transparent;
  }
}
.single-education-course fieldset label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.single-education-course fieldset label > span {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: normal;
  color: #000;
}
.single-education-course fieldset label[for=title] textarea {
  min-height: 60px;
  font-size: 20px;
  font-weight: bold;
}
.single-education-course fieldset label[for=description] textarea {
  min-height: 200px;
}
.single-education-course fieldset input,
.single-education-course fieldset textarea {
  outline: none;
  border-radius: 6px;
  border: 1px solid #7E7E7E;
  background: none;
  font-family: inherit;
  line-height: normal;
  color: #000;
}
.single-education-course fieldset input::-webkit-input-placeholder, .single-education-course fieldset textarea::-webkit-input-placeholder {
  color: #7E7E7E;
}
.single-education-course fieldset input::-moz-placeholder, .single-education-course fieldset textarea::-moz-placeholder {
  color: #7E7E7E;
}
.single-education-course fieldset input:-ms-input-placeholder, .single-education-course fieldset textarea:-ms-input-placeholder {
  color: #7E7E7E;
}
.single-education-course fieldset input::-ms-input-placeholder, .single-education-course fieldset textarea::-ms-input-placeholder {
  color: #7E7E7E;
}
.single-education-course fieldset input::placeholder,
.single-education-course fieldset textarea::placeholder {
  color: #7E7E7E;
}
.single-education-course fieldset input {
  padding: 3px 12px;
  font-size: 13px;
}
.single-education-course fieldset textarea {
  padding: 5px 10px;
  resize: none;
  font-size: 16px;
}
.single-education-course fieldset + fieldset {
  margin-top: 15px;
}
.single-education-course .changes-buttons {
  margin-top: 20px;
}

.changes-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.changes-buttons button {
  padding: 12px 15px;
  border-radius: 10px;
  min-height: 40px;
  width: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 15px;
  line-height: normal;
  color: #000;
}

.edit-fieldset .course {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.edit-fieldset .course input:not([type=checkbox]) {
  width: 100%;
  outline: none;
  border-radius: 6px;
  border: 1px solid #7E7E7E;
  background: none;
  padding: 3px 12px;
  font-size: 13px;
  font-family: inherit;
  line-height: normal;
  color: #000;
}
.edit-fieldset .course input:not([type=checkbox])::-webkit-input-placeholder {
  color: #7E7E7E;
}
.edit-fieldset .course input:not([type=checkbox])::-moz-placeholder {
  color: #7E7E7E;
}
.edit-fieldset .course input:not([type=checkbox]):-ms-input-placeholder {
  color: #7E7E7E;
}
.edit-fieldset .course input:not([type=checkbox])::-ms-input-placeholder {
  color: #7E7E7E;
}
.edit-fieldset .course input:not([type=checkbox])::placeholder {
  color: #7E7E7E;
}
.edit-fieldset .course input[type=checkbox] {
  display: none;
}
.edit-fieldset .course input[type=checkbox]:checked + span::before {
  background: #7E7E7E;
}
@media (any-hover: hover) {
  .edit-fieldset .course input[type=checkbox]:not(:checked):hover + span::before {
    border-color: #ADADAD;
  }
}
.edit-fieldset .course span {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-size: 12px;
  line-height: 0;
}
.edit-fieldset .course span::before {
  content: "";
  padding: 2px;
  border-radius: 4px;
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #9F9F9F;
  background: transparent;
  -webkit-transition: border-color 0.3s ease, background 0.3s ease;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.edit-fieldset .doc {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.edit-fieldset .doc .delete {
  margin-left: 100px;
}
.edit-fieldset .create {
  margin-top: 10px;
}

.employees-amount {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-size: 11px;
  line-height: normal;
  color: #000;
}
.employees-amount img {
  margin-right: 4px;
}
.employees-amount + .page-management {
  margin-top: 15px;
}

.education-matrix .matrix-list {
  margin-top: 20px;
}
.education-matrix .education-table--matrix + .page-management {
  margin-top: 20px;
}

.matrix-data {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 30px;
}
.matrix-data__panel {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  font-size: 11px;
  font-weight: 500;
  line-height: normal;
  color: #000;
}
.matrix-data__panel span {
  gap: 4px;
}
.matrix-data__panel .edit-button {
  margin-left: 0;
}
.matrix-data__caption strong {
  margin-right: 20px;
  font-size: 15px;
  font-weight: 700;
  color: #7E7E7E;
  letter-spacing: 3px;
}
.matrix-data__caption .id {
  margin: 0;
}
.matrix-data__aside-content p {
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
  color: #000;
}
.matrix-data .page-tabs li {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.matrix-content {
  margin-top: 25px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.matrix-content__files {
  width: min(600px, 100%);
  margin-right: 80px;
}
.matrix-content__files fieldset label > span {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
  color: #000;
}
.matrix-content__files-buttons {
  margin-top: 20px;
}
.matrix-content__info {
  margin-left: auto;
  width: min(400px, 100%);
}
.matrix-content__info h3 {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: normal;
  color: #000;
}

.matrix-course {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 200px));
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 13px;
  line-height: normal;
  color: #000;
}
.matrix-course.col3 {
  grid-template-columns: repeat(3, minmax(120px, 220px));
  gap: 40px;
}
.matrix-course:not(:first-child) {
  margin-top: 20px;
}
.matrix-course:not(:last-child) {
  padding-bottom: 30px;
  border-bottom: 1px solid #ADADAD;
}
.matrix-course__name {
  font-size: 13px;
  font-weight: 500;
}
.matrix-course__info > span + span {
  margin-top: 25px;
}
.matrix-course__info > span:has(.id) {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.matrix-course__info > span:has(.id) .id {
  margin-bottom: 5px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.matrix-course__info > span:has(.id) + span:has(.id) {
  margin-top: 0;
}
.matrix-course__info label {
  position: relative;
}
.matrix-course__info label input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.matrix-course__info label input[type=checkbox]:checked + span {
  background: #7E7E7E;
}
.matrix-course__info label span {
  margin-right: 5px;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid #000;
  border-radius: 4px;
  background: transparent;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media (any-hover: hover) {
  .matrix-course__info label span:hover {
    border-color: #7E7E7E;
  }
}

.matrix-table {
  margin-top: 15px;
  padding: 5px 0;
  border-top: 1px solid #ADADAD;
  border-bottom: 1px solid #ADADAD;
}
.matrix-table__header {
  margin-bottom: 10px;
  padding-left: 20px;
  display: grid;
  grid-template-columns: minmax(60px, 2fr) minmax(120px, 3fr) minmax(80px, 200px) minmax(90px, 120px) minmax(90px, 120px) minmax(120px, 200px) minmax(115px, 200px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 10px;
  line-height: normal;
  color: #ADADAD;
}

.matrix-table__header.table_table {
  margin-bottom: 10px;
  padding-left: 20px;
  display: grid;
  grid-template-columns: minmax(10px, 20px) minmax(60px, 1fr) minmax(120px, 1fr) minmax(80px, 1fr) minmax(90px, 1fr) minmax(90px, 1fr) minmax(120px, 1fr) minmax(115px, 1fr) minmax(115px, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 10px;
  line-height: normal;
  color: #ADADAD;
}
.table_table .name .ellipsis{
  color: #000;
  font-size: 14px;
}
.matrix-table__item.table_table {
  margin-bottom: 10px;
  padding-left: 20px;
  display: grid;
  grid-template-columns: minmax(10px, 20px) minmax(60px, 1fr) minmax(120px, 1fr) minmax(80px, 1fr) minmax(90px, 1fr) minmax(90px, 1fr) minmax(120px, 1fr) minmax(115px, 1fr) minmax(115px, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 10px;
  line-height: normal;
  color: #ADADAD;
}
.matrix-table__item {
  display: grid;
  grid-template-columns: 15px minmax(120px, 1fr) minmax(120px, 1fr) minmax(80px, 200px) minmax(90px, 120px) minmax(90px, 120px) minmax(120px, 200px) minmax(115px, 200px);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
  color: #000;
}
.matrix-table__item label {
  position: relative;
}
.matrix-table__item label input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.matrix-table__item label input:checked + span {
  background: #7E7E7E;
}
.matrix-table__item label span {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid #7E7E7E;
  border-radius: 4px;
  background: transparent;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media (any-hover: hover) {
  .matrix-table__item label span:hover {
    border-color: #7E7E7E;
  }
}
.matrix-table__item .name {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.matrix-table__item .ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.matrix-table__item .comment {
  padding: 5px;
  border-radius: 10px;
  border: 1px solid #000;
  font-size: 12px;
}
.matrix-table__item .files {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.matrix-table__item .files img {
  cursor: pointer;
}
.matrix-table__item + .matrix-table__item {
  margin-top: 10px;
}

.edit-button {
  position: relative;
  top: -2px;
  margin-left: 4px;
}