.info-box {
  padding: 25px 30px 25px 30px;
  position: relative;
  color: #2a2a2a;
  background: #f3f3f3;
  border-radius: 6px;
}

.info-box-error {
  padding: 25px 30px 25px 30px;
  position: relative;
  color: #FF6A97;
  background: #ffdede;
  border-radius: 6px;
}

.info-box-success {
  padding: 25px 30px 25px 30px;
  position: relative;
  color: #06610e;
  background: #d0fddc;
  border-radius: 6px;
}

.blur {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  height: 100vh;
  width: 50%;
}


.toggle-checkbox {
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #727FA1;
  position: relative;
}
.toggle-checkbox span {
  min-width: 42px;
  height: 23px;
  display: block;
  background: #F3F8FA;
  border-radius: 200px;
  position: relative;
  transition: all 0.3s ease-out;
}
.toggle-checkbox span::before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  left: 5px;
  top: 4px;
  border-radius: 100px;
  background: rgba(181, 187, 202, 0.5);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.04) inset;
  transition: all 0.3s ease-out;
}
.toggle-checkbox input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.toggle-checkbox input:checked + span {
  background: #0075FF;
}
.toggle-checkbox input:checked + span::before {
  left: 21px;
  background: #fff;
}
.toggle-checkbox p {
  margin: 0;
}

.is-info__row {
  min-height: 55px;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(114, 127, 161, .09);
  font-size: 14px;
  color: #727fa1;
}

.is-info__row p {
  width: 100%; 
  max-width: 200px;
}









.tabs {
  margin: 36px 0 33px;
  display: flex;
  gap: 30px;
  background: #fff;
  border: 1px solid rgba(114, 127, 162, 0.09);
  border-radius: 6px;
  overflow: hidden;
}
.tabs__link {
  padding: 14px 12px 11px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #727FA2;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease-out;
}
.tabs__link:hover, .tabs__link_active {
  background: #FAFAFA;
}
.tabs__link_active {
  border-color: #0075FF;
}
.tabs__num {
  display: inline-block;
  padding: 3.5px;
  min-width: 22px;
  font-weight: 700;
  font-size: 10px;
  line-height: 15px;
  text-align: center;
  color: #fff;
  background: #0075FF;
  border-radius: 50%;
}
.tabs__button {
  padding: 13px;
  min-width: 160px;
  margin-left: auto;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  gap: 4px;
}
.tabs__button svg {
  width: 24px;
  height: 24px;
}

.is-tabs {
  margin: 60px 0 30px;
  justify-content: space-between;
  gap: 5px;
}
.is-tabs .tabs__link {
  padding: 12px 16px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.is-tabs .tabs__num {
  padding: 3.5px 6px;
  border-radius: 255px;
}

.is-tab-content {
  display: none;
}

.is-menu-navigation {
  min-height: 100vh;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: baseline;
}

.is-menu {
  width: 389px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(114, 127, 161, 0.09);
  transition: all 0.3s ease-out;
}
.is-menu__back {
  width: 32px;
  height: 42px;
  position: absolute;
  left: 10px;
  top: calc(50% - 21px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.is-menu__back:hover {
  color: #0075FF;
}
.is-menu__title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  justify-content: space-between;
  padding: 20px 18px 16px 71px;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  color: #727FA1;
  transition: all 0.3s ease-out;
}
.is-menu__toggle {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: block;
  cursor: pointer;
}
.is-menu__toggle svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  fill: #727FA1;
  transition: all 0.3s ease-out;
}
.is-menu__toggle:hover svg {
  fill: #0075FF;
}
.is-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
  transition: opacity 0.3s 0.2s ease-out;
}
.is-menu__item {
  display: grid;
  grid-template-columns: 42px 1fr 20px;
  gap: 9px;
  padding: 9px 20px;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.is-menu__item-progress, .is-menu__item-count {
  display: inline-block;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.48;
  text-align: center;
  color: #B5BBCA;
}
.is-menu__item-progress {
  grid-column: 1;
}
.is-menu__item-title {
  grid-column: 2;
  font-weight: 600;
  font-size: 14px;
  color: #00317B;
}
.is-menu__item-count {
  grid-column: 3;
}
.is-menu__item-submenu {
  grid-column: 1/4;
  grid-row: 2;
  margin: 0 -20px;
  padding: 0;
  list-style: none;
}
.is-menu__item-submenu li {
  padding: 3px 20px 3px 71px;
  font-weight: 500;
  font-size: 14px;
  color: #727FA1;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.is-menu__item-submenu li:hover {
  background: #FAFAFA;
}
.is-menu__item-submenu li.active {
  position: relative;
  background: #FAFAFA;
}
.is-menu__item-submenu li.active::before {
  content: "";
  width: 3px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
  background: #0075FF;
}
.is-menu__item:hover {
  background: #FAFAFA;
}
.is-menu__item_has-submenu {
  cursor: default;
}
.is-menu__item_has-submenu:hover {
  background: none;
}
.is-menu__item_active {
  position: relative;
  background: #FAFAFA;
}
.is-menu__item_active::before {
  content: "";
  width: 3px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
  background: #0075FF;
}
.is-menu_closed {
  width: 70px;
}
.is-menu_closed .is-menu__back {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.is-menu_closed .is-menu__title {
  padding: 0;
  gap: 0;
  font-size: 0;
  color: transparent;
}
.is-menu_closed .is-menu__toggle {
  width: 68px;
  height: 65px;
  padding: 20px 19px 15px 19px;
  transform: rotateY(180deg);
}
.is-menu_closed .is-menu__list {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.1s ease-out;
}
.is-menu_another {
  display: none;
}

.is-content-title {
  margin: 20px 0;
  font-weight: 600;
  font-size: 18px;
  color: #727FA1;
}

.is-menu-content {
  display: none;
}
.is-menu-content .is-content-title {
  margin: 20px;
}

.is-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
}

.is-btn {
  padding: 5px 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-weight: 600;
  font-size: 11px;
  line-height: 1.48;
  color: #fff;
  background: #0178BC;
  border-radius: 4.874px;
  transition: all 0.3s ease-out;
}
.is-btn img, .is-btn svg {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.is-btn:hover {
  background: #0075FF;
}
.is-btn:active {
  background: #1F1F1F;
}

.is-table {
  border-collapse: collapse;
}
.is-table tr:nth-child(odd) {
  background: #FAFAFA;
}
.is-table tr:nth-child(odd) td:first-child {
  border-radius: 6px 0 0 6px;
}
.is-table tr:nth-child(odd) td:last-child {
  border-radius: 0 6px 6px 0;
}
.is-table tr td {
  vertical-align: top;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}
.is-table tr td p {
  margin: 0;
}
.is-table tr td p + p {
  margin-top: 3px;
}
.is-table tr td:first-child {
  width: 226px;
  padding: 12px 6px 12px 20px;
  color: #727FA1;
}
.is-table tr td:nth-child(2) {
  width: 62px;
  padding: 12px 20px 12px 0;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.48;
  text-align: center;
}
.is-table tr td:last-child {
  padding: 12px 30px 12px 20px;
  color: #B5BBCA;
}
.is-table tr td:last-child b {
  display: inline-block;
  font-weight: 600;
  color: #012546;
  line-height: 20px;
}

.is-classifier {
  margin-bottom: 40px;
  padding: 30px 16px 20px;
  border-radius: 6px;
  background: #F3F8FA;
}
.is-classifier__title {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #00317B;
}
.is-classifier__description {
  font-size: 14px;
  line-height: 20px;
  color: #727FA1;
}
.is-classifier__description > * {
  margin: 16px 0;
}
.is-classifier__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
}
.is-classifier__item {
  padding: 20px 16px;
  border-radius: 6px;
  background: #fff;
}
.is-classifier__item-title {
  margin: 0 20px 16px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: #00317B;
}
.is-classifier__table-name {
  padding: 10px 21px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #00317B;
}
.is-classifier__row {
  padding: 12px 20px;
  display: grid;
  grid-template-columns: 1fr 215.5px;
  justify-content: space-between;
  gap: 40px;
  font-size: 14px;
  line-height: 20px;
}
.is-classifier__row:nth-child(odd) {
  background: #FAFAFA;
}
.is-classifier__row-label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #727FA1;
}
.is-classifier__row-label > * {
  margin: 0;
}
.is-classifier__row-label > *:first-child {
  width: 100%;
  max-width: 240px;
}
.is-classifier__row-value {
  font-weight: 600;
  color: #012546;
}

.is-download-list {
  margin: 20px 0;
}
.is-download-list__item {
  padding: 12px 19px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 6px;
}
.is-download-list__item .status {
  flex-shrink: 0;
  padding: 1.5px 5px;
  font-weight: 700;
  font-size: 10px;
  line-height: 1.48;
  text-align: center;
  background: none;
}
.is-download-list__item:nth-child(odd) {
  background: #FAFAFA;
}
.is-download-list__name {
  flex-grow: 1;
  margin: 0;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  color: #0075FF;
}
.is-download-list__btn {
  flex-shrink: 0;
  width: 52px;
  height: 36px;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4.874px;
  background-color: #0178BC;
  transition: all 0.3s ease-out;
}
.is-download-list__btn svg {
  width: 14px;
  height: 14px;
  object-fit: contain;
  fill: none;
  stroke: #fff;
}
.is-download-list__btn svg path {
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.is-download-list__btn:hover {
  background: #0075FF;
}
.is-download-list__btn:active {
  background: #1f1f1f;
}

.btn_small {
  min-width: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #0075FF;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease-out;
}


