@charset "UTF-8";
/* stylelint-disable */
.link {
  display: inline-flex;
  align-items: center;
  appearance: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  color: #267f8c;
  cursor: pointer;
}
.link:hover {
  color: #259de3;
}
.link:active {
  color: #267f8c;
}
.link svg {
  height: 16px;
  min-width: 16px;
}
.link--disabled {
  color: #c8c8c9;
  cursor: not-allowed;
  user-select: none;
}
.link--disabled:hover {
  color: #c8c8c9;
}
.link--underline {
  text-decoration: underline;
}
.link--underline:active, .link--underline:focus {
  text-decoration: none;
}
.link--icon svg {
  margin-right: 4px;
}
.link--icon-right svg {
  order: 1;
  margin: 0 0 0 4px;
}
.link--xs {
  font-size: 12px;
}
.link--sm {
  font-size: 14px;
}
.link--lg {
  font-size: 16px;
}
.link--xl {
  font-size: 18px;
}

.input {
  padding: 9px;
  width: 100%;
  border: 1px solid #adadaf;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1;
  color: #181818;
  background-color: #fff;
}
.input:hover {
  padding: 9px;
  border: 1px solid #181818;
}
.input:active, .input:focus {
  padding: 7px;
  outline: none;
  border: 3px solid #267f8c;
}
.input--disabled, .input[disabled] {
  border-color: rgba(118, 118, 122, 0.5);
  cursor: not-allowed;
}
.input--disabled:active, .input--disabled:focus, .input--disabled:hover, .input[disabled]:active, .input[disabled]:focus, .input[disabled]:hover {
  padding: 9px;
  border: 1px solid #adadaf;
}
.input--disabled::placeholder, .input[disabled]::placeholder {
  color: rgba(118, 118, 122, 0.5);
}
.input::placeholder {
  color: #76767a;
}
.input--error {
  padding: 7px;
  border: 3px solid #ff3d00;
  background-color: #ffece5;
}
.input--error:hover {
  padding: 7px;
  border: 3px solid #267f8c;
}
.input--error:active, .input--error:focus {
  padding: 7px;
  outline: none;
  border: 3px solid #267f8c;
}
.input--success {
  border: 3px solid #57a216;
}
.input--success:hover {
  border: 3px solid #267f8c;
}
.input--success:active, .input--success:focus {
  padding: 8px;
  outline: none;
  border: 3px solid #267f8c;
}
.input--sm {
  padding: 6px;
  font-size: 14px;
}
.input--sm:hover {
  padding: 6px;
}
.input--sm:active, .input--sm:focus {
  padding: 4px;
}
.input--sm.input--disabled:active, .input--sm.input--disabled:focus, .input--sm.input--disabled:hover, .input--sm[disabled]:active, .input--sm[disabled]:focus, .input--sm[disabled]:hover {
  padding: 6px;
}
.input--sm.input--error:active, .input--sm.input--error:focus {
  padding: 6px;
}
.input--sm.input--success:active, .input--sm.input--success:focus {
  padding: 6px;
}
.input--lg {
  padding: 13px;
  font-size: 16px;
}
.input--lg:hover {
  padding: 13px;
}
.input--lg:active, .input--lg:focus {
  padding: 11px;
}
.input--lg.input--disabled:active, .input--lg.input--disabled:focus, .input--lg.input--disabled:hover, .input--lg[disabled]:active, .input--lg[disabled]:focus, .input--lg[disabled]:hover {
  padding: 13px;
}
.input--lg.input--error:active, .input--lg.input--error:focus {
  padding: 13px;
}
.input--lg.input--success:active, .input--lg.input--success:focus {
  padding: 13px;
}

.button {
  --deprecated: "WARNING: Использовать .btn";
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  min-height: 40px;
  appearance: none;
  border: none;
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(70, 131, 17, 0), inset 0 -2px 1px rgba(0, 0, 0, 0.28);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  color: #fff;
  background-color: #57a216;
  cursor: pointer;
}
.button:hover {
  box-shadow: 0 3px 9px rgba(70, 131, 17, 0.5), inset 0 -2px 1px rgba(0, 0, 0, 0.28);
  color: #fff;
}
.button:active {
  box-shadow: inset 0 -2px 5px rgba(34, 34, 34, 0.3);
  background-color: #57a216;
}
.button[disabled] {
  box-shadow: none;
  color: #76767a;
  background-image: none;
  background-color: #c8c8c9;
  cursor: not-allowed;
}
.button[disabled]:hover {
  box-shadow: none;
  color: #76767a;
  background-image: none;
}
.button[disabled]:active {
  box-shadow: none;
  background-image: none;
}
.button svg {
  margin-right: 8px;
  height: 24px;
  max-width: 24px;
}
.button--sm {
  padding: 0 8px;
  min-height: 32px;
  box-shadow: none;
  font-weight: 400;
}
.button--sm:hover {
  box-shadow: 0 3px 6px rgba(70, 131, 17, 0.3);
}
.button--sm:active {
  box-shadow: inset 0 -2px 5px rgba(34, 34, 34, 0.18);
  background-color: #57a216;
}
.button--sm[disabled] {
  box-shadow: none;
  background-color: #c8c8c9;
}
.button--sm svg {
  margin-right: 8px;
  height: 16px;
  max-width: 16px;
}
.button--sm.button--accent:hover {
  box-shadow: 0 3px 9px rgba(191, 154, 0, 0.5);
}
.button--sm.button--accent:active {
  box-shadow: inset 0 -2px 5px rgba(34, 34, 34, 0.2);
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)), linear-gradient(180deg, #f8d803 0%, #fc0 100%);
}
.button--lg {
  padding: 0 24px;
  min-height: 50px;
  font-weight: 600;
  font-size: 16px;
}
.button--xl {
  padding: 0 32px;
  min-height: 60px;
  font-weight: 600;
  font-size: 18px;
}
.button--accent {
  color: #000;
  background-image: linear-gradient(180deg, #ffde00 0%, #fc0 100%);
}
.button--accent:hover {
  box-shadow: 0 3px 9px rgba(191, 154, 0, 0.5), inset 0 -2px 1px rgba(0, 0, 0, 0.28);
  color: #000;
}
.button--accent:active {
  box-shadow: inset 0 -2px 5px rgba(34, 34, 34, 0.18);
  background-image: linear-gradient(180deg, #f8d803 0%, #fc0 100%);
}
.button--accent[disabled]:hover {
  box-shadow: none;
  background-image: none;
}
.button--outline {
  border: 1px solid #57a216;
  box-shadow: inset 0 -2px 5px rgba(34, 34, 34, 0);
  color: #181818;
  background-image: none;
  background-color: #fff;
}
.button--outline:hover {
  box-shadow: none;
  color: #fff;
  background-color: #57a216;
}
.button--outline:active {
  box-shadow: inset 0 -2px 8px rgba(34, 34, 34, 0.35);
  color: #fff;
}
.button--outline[disabled] {
  border: 1px solid #c8c8c9;
  color: #76767a;
  background-color: #fff;
}
.button--outline[disabled]:hover {
  box-shadow: none;
  background-color: #fff;
}
.button--outline.button--accent {
  border-color: #ffde00;
}
.button--outline.button--accent:hover {
  border-color: #fc0;
  box-shadow: none;
  color: #181818;
  background-image: linear-gradient(180deg, #ffde00 0%, #fc0 100%);
}
.button--outline.button--accent:hover svg {
  fill: #181818;
}
.button--outline.button--accent:active {
  box-shadow: inset 0 -2px 5px rgba(34, 34, 34, 0.2);
  color: #181818;
  background-image: linear-gradient(180deg, #ffde00 0%, #fc0 100%);
}
.button--outline.button--accent[disabled]:hover, .button--outline.button--accent[disabled], .button--outline.button--accent[disabled]:focus {
  border-color: #c8c8c9;
  box-shadow: none;
  color: #76767a;
  background-image: none;
}
.button--outline.button--accent[disabled]:hover svg, .button--outline.button--accent[disabled] svg, .button--outline.button--accent[disabled]:focus svg {
  fill: #76767a;
}
.button--cancel {
  box-shadow: none;
  color: #ff3d00;
  background-color: transparent;
}
.button--cancel:hover {
  box-shadow: none;
  color: #000;
  background-color: transparent;
}
.button--cancel:active, .button--cancel:focus {
  box-shadow: none;
}
.button--100 {
  width: 100%;
}
.button--svg {
  padding: 0;
  width: 40px;
}
.button--svg svg {
  margin: 0;
}
.button--svg.button--sm {
  width: 32px;
}
.button--svg.button--lg {
  width: 50px;
}
.button--svg.button--xl {
  width: 60px;
}

.container {
  position: relative;
  margin: 0 auto;
  padding: 0 28px !important;
  max-width: 1456px !important;
}
@media only screen and (max-width: 768px) {
  .container {
    padding: 0 16px !important;
  }
}

.section {
  padding: 24px 32px;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(27, 97, 0, 0.1);
  background-color: #fff;
}
@media only screen and (max-width: 576px) {
  .section {
    margin-bottom: 32px;
    padding: 16px;
  }
}

.custom-scroll::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.custom-scroll::-webkit-scrollbar-track {
  background-color: transparent;
}
.custom-scroll::-webkit-scrollbar-thumb {
  height: 120px;
  border-radius: 4px;
  background-color: #e4e4e4;
}
.custom-scroll::-webkit-scrollbar-thumb:horizontal {
  height: 4px;
  max-width: 40px;
}

.material-types {
  width: 100%;
}
.material-types--fixed {
  position: fixed;
  left: 0;
  right: 0;
  top: 60px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-top: 1px solid #ebebeb;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.04);
  background-color: #fff;
}
@media only screen and (max-width: 1230px) {
  .material-types--fixed {
    top: 0;
  }
}
@media only screen and (max-width: 576px) {
  .material-types--fixed {
    min-height: 48px;
  }
}
.material-types--fixed .material-types__items {
  justify-content: unset;
  margin: 0 28px;
  padding: 8px 0;
  width: 100%;
  max-width: 1400px;
  gap: 40px;
}
@media only screen and (max-width: 576px) {
  .material-types--fixed .material-types__items {
    margin: 0 10px;
    gap: 24px;
  }
}
.material-types--fixed .material-types__item {
  display: flex;
  flex: unset;
  flex-direction: row-reverse;
  align-items: center;
  padding: 0;
  width: fit-content;
  box-shadow: none;
  gap: 4px;
}
.material-types--fixed .material-types__item:not(.active):hover {
  box-shadow: none;
  background-color: transparent;
}
.material-types--fixed .material-types__item:not(.active):hover .material-types__count::after {
  display: none;
}
.material-types--fixed .material-types__item:not(.active):hover .material-types__name {
  text-decoration: underline;
}
.material-types--fixed .material-types__item.active {
  border: none;
  font-weight: 500;
}
.material-types--fixed .material-types__item.active .material-types__count {
  font-weight: 500;
  color: #fff;
  background-color: #24a600;
}
.material-types--fixed .material-types__item.active .material-types__name {
  color: #24a600;
}
.material-types--fixed .material-types__count {
  margin: 0;
  padding: 2px 6px;
  border-radius: 100px;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.28px;
  background-color: #ebebeb;
}
@media only screen and (max-width: 576px) {
  .material-types--fixed .material-types__count {
    padding: 0 4px;
    font-size: 12px;
    line-height: 130%;
    letter-spacing: -0.24px;
  }
}
.material-types--fixed .material-types__name {
  max-width: 160px;
  font-size: 14px;
  letter-spacing: -0.28px;
  text-align: left;
}
@media only screen and (max-width: 576px) {
  .material-types--fixed .material-types__name {
    font-size: 12px;
    line-height: 130%;
    letter-spacing: -0.24px;
  }
}
.material-types__items {
  display: flex;
  align-items: center;
  padding-bottom: 8px;
  overflow-x: auto;
  gap: 16px;
}
@media only screen and (max-width: 768px) {
  .material-types__items {
    margin: 0 -16px;
    padding: 0 16px 8px;
  }
}
@media only screen and (max-width: 576px) {
  .material-types__items {
    gap: 8px;
  }
}
.material-types__item {
  flex: 0 0 220px;
  padding: 12px 16px 16px;
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
  background-color: #fff;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
@media only screen and (max-width: 576px) {
  .material-types__item {
    flex: 0 0 132px;
    padding: 12px;
  }
}
.material-types__item:not(.active):hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #ecf9e2;
}
.material-types__item:not(.active):hover .material-types__count::after {
  content: "";
  position: absolute;
  left: calc(100% + 10px);
  top: 8px;
  opacity: 0;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTIuNjMyIDEyLjM1NCA4LjggNy40NDZhLjgyLjgyIDAgMCAwIC4yNi4xNDguOTI2LjkyNiAwIDAgMCAuNjE1IDAgLjgyMi44MjIgMCAwIDAgLjI2LS4xNDhsOC44LTcuNDQ2YS42MjguNjI4IDAgMCAwIC4yMzItLjQ3Ny42MjguNjI4IDAgMCAwLS4yMzItLjQ3Ny44MjMuODIzIDAgMCAwLS4yNi0uMTQ4LjkzLjkzIDAgMCAwLS42MTYgMCAuODIyLjgyMiAwIDAgMC0uMjYuMTQ4bC04LjIzMiA2Ljk2NUwzLjc2OCAxMS40YS44MjMuODIzIDAgMCAwLS4yNi0uMTQ4LjkzLjkzIDAgMCAwLS42MTYgMCAuODIzLjgyMyAwIDAgMC0uMjYuMTQ4LjYyOC42MjggMCAwIDAtLjIzMy40NzdjMCAuMTguMDg0LjM1LjIzMy40Nzd6IiBmaWxsPSIjMjRBNjAwIiBzdHJva2U9IiMyNEE2MDAiIHN0cm9rZS13aWR0aD0iLjgiLz48cGF0aCBkPSJNMTEuNDMxIDEyLjZhLjgyLjgyIDAgMCAwIC4yNi4xNDguOTI2LjkyNiAwIDAgMCAuNjE2IDAgLjgyMi44MjIgMCAwIDAgLjI2LS4xNDhsOC44LTcuNDQ1YS42MjguNjI4IDAgMCAwIC4yMzItLjQ3OC42MjguNjI4IDAgMCAwLS4yMzItLjQ3Ny44MjIuODIyIDAgMCAwLS4yNi0uMTQ4LjkyOC45MjggMCAwIDAtLjYxNiAwIC44Mi44MiAwIDAgMC0uMjYuMTQ4bC04LjIzMiA2Ljk2NUwzLjc2OCA0LjJhLjgyMi44MjIgMCAwIDAtLjI2LS4xNDguOTI4LjkyOCAwIDAgMC0uNjE2IDAgLjgyMi44MjIgMCAwIDAtLjI2LjE0OC42MjguNjI4IDAgMCAwLS4yMzMuNDc3YzAgLjE4LjA4NC4zNS4yMzMuNDc4bDguOCA3LjQ0NXoiIGZpbGw9IiMyNEE2MDAiIHN0cm9rZT0iIzI0QTYwMCIgc3Ryb2tlLXdpZHRoPSIuOCIvPjwvc3ZnPg==");
  background-size: contain;
  animation: fadeIn 0.3s ease forwards;
}
@media only screen and (max-width: 576px) {
  .material-types__item:not(.active):hover .material-types__count::after {
    width: 18px;
    height: 18px;
  }
}
.material-types__item.active {
  border: 2px solid #24a600;
}
.material-types__count {
  position: relative;
  margin: 0 auto 4px;
  width: fit-content;
  font-weight: 500;
  font-size: 34px;
  line-height: 112%;
  letter-spacing: -1.36px;
  text-align: center;
  color: #1f1f1f;
}
@media only screen and (max-width: 576px) {
  .material-types__count {
    font-size: 24px;
    line-height: 118%;
    letter-spacing: -0.96px;
  }
}
.material-types__name {
  max-width: 188px;
  overflow: hidden;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
  white-space: nowrap;
  text-align: center;
  text-overflow: ellipsis;
  color: #1f1f1f;
}
@media only screen and (max-width: 576px) {
  .material-types__name {
    max-width: 108px;
    font-style: normal;
    font-size: 14px;
    line-height: 128%;
    letter-spacing: -0.21px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.document-sidebar {
  padding: 16px 4px;
  width: 206px;
  border-radius: 10px;
  box-shadow: 0 0 5px 0 rgba(31, 31, 31, 0.05), 0 4px 12px 0 rgba(31, 31, 31, 0.08);
  background-color: #fff;
}
.document-sidebar__title {
  margin-bottom: 12px;
  padding: 0 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.24px;
  color: #1f1f1f;
}
.document-sidebar__items {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.document-sidebar__item {
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.28px;
  color: #1f1f1f;
  gap: 4px;
}
.document-sidebar__item:hover {
  background-color: #f5f5f5;
  cursor: pointer;
}
.document-sidebar__item.active {
  background-color: #f5f5f5;
}
.document-sidebar__item.active:hover {
  cursor: default;
}
.document-sidebar__name {
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 142px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.document-sidebar__count {
  color: #8a8f88;
}

.materials-list {
  margin-bottom: 16px;
}
@media only screen and (max-width: 576px) {
  .materials-list {
    margin-bottom: 8px;
  }
}
.materials-list__header {
  margin-bottom: 16px;
}
.materials-list__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 116%;
  letter-spacing: -0.24px;
  color: #1f1f1f;
}
@media only screen and (max-width: 576px) {
  .materials-list__title {
    font-size: 20px;
    line-height: 118%;
    letter-spacing: -0.2px;
  }
}
.materials-list__count {
  font-weight: 400;
  font-size: 24px;
  line-height: 116%;
  letter-spacing: -0.24px;
  color: #8a8f88;
}
@media only screen and (max-width: 576px) {
  .materials-list__count {
    margin-left: 4px;
    font-size: 20px;
    letter-spacing: -0.2px;
    color: #8f938d;
  }
}
.materials-list__inner {
  position: relative;
}
.materials-list__slider {
  padding-right: 4px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .materials-list__slider {
    overflow: unset;
  }
}
.materials-list__slider-btn {
  position: absolute !important;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
}
@media only screen and (max-width: 576px) {
  .materials-list__slider-btn {
    display: none !important;
  }
}
.materials-list__slider-btn--prev {
  left: 0;
  transform: translate(-50%, -50%);
}
.materials-list__slider-btn--next {
  right: 0;
  transform: translate(50%, -50%);
}
.materials-list__slider-btn.swiper-button-disabled {
  display: none;
}
.materials-list__items {
  box-sizing: content-box;
  display: flex;
  align-items: center;
  padding-bottom: 8px;
  height: auto !important;
}
@media only screen and (max-width: 768px) {
  .materials-list__items {
    margin: 0 -16px;
    padding: 0 16px 8px;
  }
}
.materials-list__items--static {
  padding-right: 4px;
  overflow-x: auto;
  gap: 16px;
}
@media only screen and (max-width: 576px) {
  .materials-list__items--static {
    gap: 12px;
  }
}
.materials-list__slider:not(.swiper-initialized) .materials-list__items {
  gap: 16px;
}
@media only screen and (max-width: 576px) {
  .materials-list__slider:not(.swiper-initialized) .materials-list__items {
    gap: 12px;
  }
}
.materials-list__item {
  flex: 0 0 auto !important;
  width: 288px !important;
  border-radius: 16px;
}
@media only screen and (max-width: 576px) {
  .materials-list__item {
    width: 240px !important;
  }
}
@media only screen and (max-width: 576px) {
  .materials-list__item.active {
    width: 240px !important;
  }
}

.materials-list-v2__inner {
  position: relative;
}
.materials-list-v2__slider {
  padding-right: 4px;
  padding-bottom: 10px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .materials-list-v2__slider {
    overflow: unset;
  }
}
.materials-list-v2__slider-btn {
  position: absolute !important;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
}
@media only screen and (max-width: 576px) {
  .materials-list-v2__slider-btn {
    display: none !important;
  }
}
.materials-list-v2__slider-btn--prev {
  left: 0;
  transform: translate(-50%, -50%);
}
.materials-list-v2__slider-btn--next {
  right: 0;
  transform: translate(50%, -50%);
}
.materials-list-v2__slider-btn.swiper-button-disabled {
  display: none;
}
.materials-list-v2__items {
  display: flex;
  justify-content: space-between;
}
.materials-list-v2__items--static {
  overflow-x: auto;
  gap: 16px;
}
.materials-list-v2__slider:not(.swiper-initialized) .materials-list-v2__items {
  gap: 16px;
}
.materials-list-v2__item {
  box-sizing: border-box;
  flex: 0 0 auto !important;
  width: 220px !important;
}

.material-card {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding: 8px 12px 8px 8px;
  height: 88px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 5px 0 rgba(31, 31, 31, 0.05), 0 2px 10px 0 rgba(31, 31, 31, 0.08);
  background-color: #fff;
  gap: 12px;
}
.material-card:hover {
  cursor: pointer;
}
.materials-list .active .material-card {
  height: 96px;
  border: 2px solid #24a600;
  cursor: default;
}
@media only screen and (max-width: 576px) {
  .materials-list .active .material-card {
    height: 88px;
  }
}
.material-card__img {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  overflow: hidden;
  border: 1px solid #ebebeb;
  border-radius: 8px;
}
.material-card__img img {
  display: block;
  height: 72px;
  min-width: 72px;
  object-fit: cover;
}
.material-card__title {
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 184px;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.28px;
  color: #1f1f1f;
}
@media only screen and (max-width: 576px) {
  .material-card__title {
    max-height: 136px;
  }
}
.material-card__link {
  display: none;
}

.material-card-v2 {
  width: 100%;
  max-width: 220px;
  border-radius: 12px;
  box-shadow: 0 0 5px 0 rgba(31, 31, 31, 0.05), 0 2px 10px 0 rgba(31, 31, 31, 0.08);
  background-color: #fff;
}
.material-card-v2:hover {
  cursor: pointer;
}
.materials-list-v2 .active .material-card-v2 {
  border: 2px solid #24a600;
  box-shadow: none;
  cursor: default;
}
.material-card-v2__img {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #f3f0ff;
}
.material-card-v2__img img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 260px;
  object-fit: cover;
}
.materials-list-v2 .active .material-card-v2__img {
  opacity: 1;
  height: 216px;
}
.material-card-v2__inner {
  padding: 8px 12px 16px;
}
.material-card-v2__title {
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 59px;
  overflow: hidden;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.28px;
  text-overflow: ellipsis;
  color: #1f1f1f;
}

.topic-courses {
  margin-bottom: 60px;
}
@media only screen and (max-width: 576px) {
  .topic-courses {
    margin-bottom: 24px;
  }
}
.topic-courses__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 24px;
}
@media only screen and (max-width: 576px) {
  .topic-courses__head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 12px;
  }
}
.topic-courses__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 116%;
  letter-spacing: -0.24px;
  color: #1f1f1f;
}
@media only screen and (max-width: 576px) {
  .topic-courses__title {
    font-size: 20px;
    line-height: 118%;
    letter-spacing: -0.2px;
  }
}
.topic-courses__link {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
  color: #1c750b;
  gap: 6px;
}
@media only screen and (max-width: 576px) {
  .topic-courses__link {
    font-size: 14px;
  }
  .topic-courses__link svg {
    width: 16px;
    height: 16px;
  }
}
.topic-courses__list {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 1440px) {
  .topic-courses__list {
    grid-gap: 8px;
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 768px) {
  .topic-courses__list {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    overflow-x: auto;
    gap: 8px;
  }
}
.topic-courses__list > * {
  flex-shrink: 0;
}

.courses-search {
  position: relative;
  margin-bottom: 56px;
}
@media only screen and (max-width: 576px) {
  .courses-search {
    margin-bottom: 32px;
  }
}
.courses-search__head {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  gap: 16px;
}
@media only screen and (max-width: 576px) {
  .courses-search__head {
    gap: 8px;
  }
}
.courses-search__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 116%;
  letter-spacing: -0.24px;
  color: #1f1f1f;
}
@media only screen and (max-width: 576px) {
  .courses-search__title {
    font-size: 20px;
    line-height: 118%;
    letter-spacing: -0.2px;
  }
}
.courses-search__img img {
  display: block;
  width: 100%;
  height: auto;
  min-width: 32px;
  max-width: 32px;
}
.courses-search__subtitle {
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
  color: #1f1f1f;
}
@media only screen and (max-width: 576px) {
  .courses-search__subtitle {
    font-size: 14px;
    line-height: 128%;
    letter-spacing: -0.21px;
  }
}
.courses-search__input-wrapper {
  position: relative;
  width: 100%;
}
.courses-search__input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.courses-search__input-icon svg {
  display: block;
}
.courses-search__input {
  padding: 0 48px 0 40px;
  width: 100%;
  min-height: 50px;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
  color: #1f1f1f;
  background-color: #fff;
}
.courses-search__input::placeholder {
  color: #8a8f88;
}
.courses-search__content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.courses-search__clear-button {
  position: absolute !important;
  right: 12px;
  top: 50%;
  color: #aab0a7 !important;
  transform: translateY(-50%);
}
.courses-search__result {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 100;
  padding: 16px 8px;
  width: 100%;
  max-height: 560px;
  overflow-y: scroll;
  border-radius: 8px;
  box-shadow: 0 0 10px 0 rgba(31, 31, 31, 0.1), 0 16px 24px 0 rgba(31, 31, 31, 0.1);
  background-color: #fff;
}
.courses-search__result .dg-course-search__result .dg-cost {
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: -0.24px;
  color: #124700;
}
.courses-search__result .dg-course-search__result .dg-authors {
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: -0.24px;
  color: #8f938d;
}
.courses-search__result .dg-course-search__result--header {
  margin-bottom: 2px;
  padding: 8px;
  border-bottom: 1px solid #d6d6d6;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.4px;
  color: #fa7907;
}
.courses-search__result .dg-course-search__result--author {
  color: #76767a;
}
.courses-search__result .dg-course-search__result--date {
  white-space: nowrap;
  color: #ff3d00;
}
.courses-search__result .dg-course-search__result--footer a {
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
  color: #1c750b;
  cursor: pointer;
}
.courses-search__result .dg-course-search__result--none {
  padding: 10px;
}
.courses-search__result .dg-course-search__result--none a {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  color: #1c750b;
}
.courses-search__result .full-course-title {
  display: flex;
  flex-direction: column;
}
.courses-search__result .paid-by-subscription {
  display: inline-flex;
  align-items: center;
  margin: 4px 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: -0.24px;
  color: #124700;
}
.courses-search__result .paid-by-subscription img {
  display: block;
  margin-right: 4px;
  width: 14px;
  height: 14px;
}
.courses-search__result .paid-by-subscription p {
  color: #424242;
}
.courses-search__result .v-search-result__none {
  display: block;
  padding: 20px;
}
.courses-search__result .v-search-result__none a {
  text-decoration: underline;
  color: #ff7800;
}
.courses-search__result .v-search-result__none a:hover {
  text-decoration: none;
}
.courses-search__result ul li a {
  display: block;
  padding: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
  color: #1f1f1f;
}
.courses-search__result ul li a:hover {
  background-color: #f0f0f0;
}
.courses-search__result ul li.v-search-result__header {
  padding: 10px 20px;
  border-bottom: 1px dashed #9ad0cb;
  font-weight: 600;
  font-size: 18px;
  color: #20746d;
}
.courses-search__result ul li.v-search-result__footer {
  border-top: 1px dashed #9ad0cb;
}
.courses-search__result ul li.v-search-result__footer a {
  padding: 10px 20px;
  text-align: right;
}
.courses-search__result ul li.v-search-result__item a {
  padding: 6px 20px;
}
.courses-search__result ul li.v-search-result__item a .dg-cost {
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: -0.24px;
  color: #124700;
}

.other-materials {
  margin-bottom: 56px;
}
.other-materials__title {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 24px;
  line-height: 116%;
  letter-spacing: -0.24px;
  color: #1f1f1f;
}
.other-materials__item:not(:last-of-type) {
  margin-bottom: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid #d6d6d6;
}

.other-material {
  position: relative;
}
.other-material__formats, .other-material__tags {
  display: contents;
}
.other-material__textbook, .other-material__topic {
  font-weight: 400;
  font-size: 14px;
  line-height: 125%;
  letter-spacing: -0.28px;
  color: #1f1f1f;
}
.other-material__textbook mark, .other-material__topic mark {
  color: #666;
}
.other-material__inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
@media only screen and (max-width: 768px) {
  .other-material__inner {
    flex-direction: column;
    gap: 16px;
  }
}
.other-material__info {
  width: 100%;
}
.other-material__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 12px;
  max-width: calc(100% - 44px);
  gap: 8px 4px;
}
.other-material__title {
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.4px;
  color: #1f1f1f;
}
@media only screen and (max-width: 576px) {
  .other-material__title {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
}
.other-material__title:hover {
  text-decoration: underline;
}
.other-material__textbook {
  margin-bottom: 4px;
}
.other-material__topic {
  margin-bottom: 12px;
}
.other-material__author {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 8px;
}
.other-material__author-avatar {
  width: 24px;
  height: 24px;
  overflow: hidden;
  border-radius: 50%;
}
.other-material__author-avatar img {
  display: block;
}
.other-material__author-name {
  font-weight: 400;
  font-size: 14px;
  line-height: 125%;
  letter-spacing: -0.28px;
  color: #1b6100;
}
@media only screen and (max-width: 576px) {
  .other-material__author-name {
    font-size: 12px;
  }
}
.other-material__items {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 32px;
}
.other-material__cover {
  width: 100%;
  max-width: 142px;
}
.other-material__cover img {
  display: block;
  width: 100%;
}
.other-material__bookmark {
  margin-left: auto;
}
@media only screen and (max-width: 992px) {
  .other-material__bookmark {
    position: absolute !important;
    right: 0;
    top: 0;
  }
}
.other-material__bookmark .svg--fill {
  color: #00bc4b;
}

.interesting-courses {
  margin-bottom: 56px;
}
.interesting-courses__title {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 24px;
  line-height: 116%;
  letter-spacing: -0.24px;
  color: #1f1f1f;
}
@media only screen and (max-width: 576px) {
  .interesting-courses__title {
    font-size: 20px;
    line-height: 118%;
    letter-spacing: -0.2px;
  }
}
.interesting-courses__item:not(:last-of-type) {
  margin-bottom: 16px;
}
.interesting-courses__link {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
  text-decoration-line: underline;
  color: #1f1f1f;
}
@media only screen and (max-width: 576px) {
  .interesting-courses__link {
    font-size: 12px;
  }
}
.interesting-courses__link:hover {
  text-decoration: none;
}

.material-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 8px;
}
@media only screen and (max-width: 576px) {
  .material-tags {
    gap: 6px 6px;
  }
}

.material-rating {
  display: flex;
  align-items: center;
}
.material-rating__reviews:not(:empty) {
  margin-right: 12px;
  margin-bottom: 16px;
}
.material-rating__reviews--document {
  display: flex;
  align-items: center;
}
.material-rating__reviews--document svg {
  display: block;
  margin-right: 8px;
  color: #ffa719;
}
.material-rating__rating {
  margin-right: 4px;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.4px;
  color: #1f1f1f;
}
.material-rating__count {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
  color: #8f938d;
}
.material-rating__vote {
  margin: 0 0 16px;
  padding: 0;
  border: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
  color: #24a600;
  background-color: transparent;
}
.material-rating__vote:hover {
  text-decoration: underline;
}

.material-formats {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media only screen and (max-width: 576px) {
  .material-formats {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.material-formats__title {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
  color: #8a8f88;
}
@media only screen and (max-width: 576px) {
  .material-formats__title {
    font-size: 14px;
    line-height: 128%;
    letter-spacing: -0.21px;
    color: #8f938d;
  }
}
.material-formats__list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.material-actions__row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.material-author__title {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.4px;
  color: #1f1f1f;
}
@media only screen and (max-width: 576px) {
  .material-author__title {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 128%;
    letter-spacing: -0.32px;
  }
}
.material-author__row {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
}
@media only screen and (max-width: 576px) {
  .material-author__row {
    margin-bottom: 12px;
  }
}
.material-author__row--big {
  margin-bottom: 32px;
}
@media only screen and (max-width: 576px) {
  .material-author__row--big {
    margin-bottom: 24px;
  }
}
.material-author__avatar {
  min-width: 64px;
  overflow: hidden;
  border-radius: 50%;
}
.material-author__avatar img {
  display: block;
  width: 100%;
  height: auto;
  min-width: 64px;
  max-width: 64px;
}
.material-author__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
}
.material-author__name {
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
  color: #1f1f1f;
}
@media only screen and (max-width: 576px) {
  .material-author__name {
    font-size: 14px;
  }
}
.material-author__position {
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 400;
  font-size: 14px;
  line-height: 125%;
  letter-spacing: -0.28px;
  color: #8a8f88;
}
@media only screen and (max-width: 576px) {
  .material-author__position {
    font-size: 12px;
    line-height: 120%;
    letter-spacing: -0.24px;
    color: #8f938d;
  }
}
.material-author__position--big {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.24px;
  color: #1f1f1f;
}
@media only screen and (max-width: 576px) {
  .material-author__position--big {
    font-size: 14px;
    line-height: 128%;
    letter-spacing: -0.21px;
  }
}
.material-author__contact {
  margin: 0;
  padding: 0;
  border: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 125%;
  letter-spacing: -0.28px;
  color: #24a600;
  background-color: transparent;
}
@media only screen and (max-width: 576px) {
  .material-author__contact {
    font-size: 12px;
    line-height: 120%;
    letter-spacing: -0.24px;
  }
}
.material-author__contact:hover {
  text-decoration: underline;
}
.material-author__stats {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 16px;
}
@media only screen and (max-width: 576px) {
  .material-author__stats {
    grid-template-columns: 1fr;
  }
}
.material-author__stats--row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.material-author__stat {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
  color: #181818;
  gap: 6px;
}
@media only screen and (max-width: 576px) {
  .material-author__stat {
    font-size: 12px;
    line-height: 130%;
    letter-spacing: -0.24px;
    color: #1f1f1f;
  }
}
.material-author__stat a {
  font-weight: 500;
  text-decoration-line: underline;
  color: #1f1f1f;
}
.material-author__stat a:hover {
  text-decoration-line: none;
}
.material-author__stat svg {
  color: #aab0a7;
}
@media only screen and (max-width: 576px) {
  .material-author__stat svg {
    width: 12px;
    height: 12px;
  }
}
.material-author__inner {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
  color: #1f1f1f;
  gap: 8px;
}
@media only screen and (max-width: 576px) {
  .material-author__inner {
    font-size: 12px;
    line-height: 130%;
    gap: 6px;
  }
}
.material-author__inner strong {
  font-weight: 500;
}
.material-author__inner mark {
  color: #8a8f88;
}
.material-author__description {
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.material-author__more {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
  text-decoration-style: dashed;
  text-decoration-line: underline;
  color: #1b6100;
  cursor: pointer;
  text-decoration-skip-ink: none;
  text-underline-offset: 4px;
}
@media only screen and (max-width: 576px) {
  .material-author__more {
    font-size: 12px;
    line-height: 130%;
  }
}
.material-author__more:hover {
  text-decoration: none;
}
.material-author__hidden-link {
  position: absolute;
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  white-space: nowrap;
  clip: rect(0 0 0 0);
}

.material-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-block: 16px;
}
@media only screen and (max-width: 576px) {
  .material-footer {
    justify-content: center;
    margin-bottom: 24px;
  }
}
.material-footer__buttons {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 16px;
}
@media only screen and (max-width: 576px) {
  .material-footer__buttons {
    margin-left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .material-footer__share {
    display: none;
  }
}
.material-footer__bookmark {
  display: none;
}
@media only screen and (max-width: 1230px) {
  .material-footer__bookmark {
    display: block;
  }
}
.material-footer__download-button {
  display: none;
}
.material-footer__change-view-button:hover {
  color: #24a600;
}
.material-footer__change-view-button.active {
  color: #24a600;
}
.material-footer__fullscreen-button:disabled {
  color: #aab0a7;
  cursor: not-allowed;
}
.material-footer__fullscreen-button:disabled:hover {
  color: #aab0a7;
}

.material-share {
  position: relative;
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  .material-share {
    margin-left: 0;
  }
}
.material-share__items {
  display: flex;
  align-items: center;
  gap: 16px;
}
.material-share__img {
  display: block;
}
.material-share__copy-container {
  position: relative;
}
.material-share__btn {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  border: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.24px;
  color: #8f938d;
  background-color: transparent;
  gap: 6px;
}
.material-share__btn:hover {
  color: #24a600;
}
.material-share__tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  z-index: 10;
  opacity: 0;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  color: #fff;
  background-color: #000;
  transform: translate(-50%, 0);
  transition: opacity 0.5s ease;
  pointer-events: none;
}
@media only screen and (max-width: 576px) {
  .material-share__tooltip {
    left: unset;
    right: -24px;
    transform: unset;
  }
}
.material-share__tooltip.visible {
  opacity: 1;
  pointer-events: auto;
}
.material-share__popup {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 11;
  display: none;
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 0 5px 0 rgba(31, 31, 31, 0.05), 0 6px 14px 0 rgba(31, 31, 31, 0.08);
  background-color: #fff;
  gap: 16px;
}
@media only screen and (max-width: 768px) {
  .material-share__popup {
    right: 50%;
    transform: translate(50%, 0);
  }
}
.material-share__popup img {
  height: 40px;
  min-width: 40px;
}
@media only screen and (max-width: 576px) {
  .material-share__popup img {
    height: 36px;
    min-width: 36px;
    max-width: 36px;
  }
}
.material-share__popup.active {
  display: flex;
}

.material-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media only screen and (max-width: 576px) {
  .material-controls [data-material-content-target=prevBtn] {
    order: 1;
  }
  .material-controls .material-controls__progress {
    order: 2;
  }
  .material-controls [data-material-content-target=nextBtn] {
    order: 3;
  }
}
.material-controls__buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media only screen and (max-width: 576px) {
  .material-controls__buttons {
    display: contents;
  }
}
.material-controls__button.disabled {
  color: #aab0a7;
  cursor: not-allowed;
}
.material-controls__progress {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
  color: #8f938d;
}

.material-description--archive {
  padding: 16px;
  border: 1px solid #ebebeb;
  border-radius: 16px;
}
@media only screen and (max-width: 576px) {
  .material-description--archive {
    padding: 12px;
  }
}
.material-description__title {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.4px;
  color: #181818;
}
@media only screen and (max-width: 576px) {
  .material-description__title {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 128%;
    letter-spacing: -0.32px;
  }
}
.material-description__title:not(:empty) {
  margin-bottom: 16px;
}
.material-description__wrap {
  margin-right: -8px;
  padding-right: 8px;
  max-height: 238px;
  overflow: auto;
}
@media only screen and (max-width: 576px) {
  .material-description__wrap {
    max-height: 60vh;
  }
}
.material-description__wrap--big {
  max-height: 270px;
}
@media only screen and (max-width: 576px) {
  .material-description__wrap--big {
    max-height: 60vh;
  }
}
.material-description--archive .material-description__wrap--big {
  max-height: 372px;
}
@media only screen and (max-width: 576px) {
  .material-description--archive .material-description__wrap--big {
    max-height: 60vh;
  }
}
.material-description__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
  color: #676b67;
}
@media only screen and (max-width: 576px) {
  .material-description__text {
    font-size: 14px;
    line-height: 128%;
    letter-spacing: -0.21px;
  }
}
.material-description__text img {
  height: auto;
  max-width: 100%;
}
.material-description__wrap--big .material-description__text {
  color: #1f1f1f;
}
.material-description__presentation-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.material-description__presentation-items:not(:last-of-type) {
  margin-bottom: 16px;
}
.material-description__presentation-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
@media only screen and (max-width: 992px) {
  .material-description__presentation-item {
    flex-direction: column;
  }
}
@media only screen and (max-width: 576px) {
  .material-description__presentation-item {
    gap: 12px;
  }
}
.material-description__presentation-img {
  width: 100%;
  min-width: 280px;
  max-width: 280px;
  border: 1px solid #ebebeb;
  object-fit: cover;
  cursor: pointer;
}
.material-description__presentation-text {
  letter-spacing: -0.24px;
  color: #1f1f1f;
}
.material-description__presentation-text h4 {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
}
.material-description__presentation-text p {
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
}
.material-description__archive-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.material-description__archive-items:not(:last-of-type) {
  margin-bottom: 12px;
}

.material-bookmark-button .svg--fill {
  color: #00bc4b;
}

.material-download-button {
  z-index: 10;
}
.material-download-button .iu-button-text {
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media only screen and (max-width: 576px) {
  .material-download-button--instant-payment {
    min-height: 48px;
  }
}
@media only screen and (max-width: 576px) {
  .material-download-button--instant-payment .iu-button-text {
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.document-content {
  padding: 16px 8px 16px 12px;
  max-height: 486px;
  border: 1px solid #ebebeb;
  border-radius: 16px;
}
@media only screen and (max-width: 576px) {
  .document-content {
    padding: 12px 6px 12px 8px;
    max-height: fit-content;
    border-radius: 12px;
  }
}
.document-content__scroll-area {
  padding: 0 16px 8px 4px;
  max-height: 454px;
  overflow: auto;
}
@media only screen and (max-width: 576px) {
  .document-content__scroll-area {
    padding-right: 6px;
    max-height: 60vh;
  }
}
.document-content__text {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.24px;
  color: #1f1f1f;
}
@media only screen and (max-width: 576px) {
  .document-content__text {
    font-size: 12px;
    letter-spacing: -0.24px;
  }
}
.document-content__text .MsoNormalTable,
.document-content__text .MsoNormal,
.document-content__text .c9 {
  margin-left: 0 !important;
}
.document-content__text img {
  max-width: none !important;
}

.preview-unavailable {
  padding: 56px 0;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  background-color: #fff;
}
@media only screen and (max-width: 576px) {
  .preview-unavailable {
    padding: 18px 0;
  }
}
.preview-unavailable__img {
  margin-bottom: 40px;
}
@media only screen and (max-width: 576px) {
  .preview-unavailable__img {
    margin-bottom: 16px;
  }
}
.preview-unavailable__img img {
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width: 576px) {
  .preview-unavailable__img img {
    height: auto;
    max-width: 165px;
  }
}
.preview-unavailable__text {
  margin: 0 auto;
  max-width: 265px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.24px;
  text-align: center;
  color: #676b67;
}
@media only screen and (max-width: 576px) {
  .preview-unavailable__text {
    max-width: 250px;
    font-size: 14px;
  }
}

.worksheet-content__gallery {
  display: flex;
  justify-content: space-between;
  max-height: 486px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .worksheet-content__gallery {
    flex-direction: column-reverse;
    max-height: 902px;
  }
}
.document--like-mp .worksheet-content__gallery {
  max-height: 600px;
}
@media only screen and (max-width: 768px) {
  .document--like-mp .worksheet-content__gallery {
    max-height: 902px;
  }
}
.worksheet-content__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 486px;
  overflow: hidden;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  object-fit: cover;
  user-select: none;
  -webkit-touch-callout: none;
}
@media only screen and (max-width: 768px) {
  .worksheet-content__image-wrapper {
    max-width: 100%;
    border-radius: 12px;
  }
}
.document--like-mp .worksheet-content__image-wrapper {
  max-width: 600px;
}
.document--v2 .worksheet-content__image-wrapper {
  max-width: 540px;
}
@media only screen and (max-width: 992px) {
  .worksheet-content__image::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .worksheet-content__image::after {
    content: "";
    display: block;
    padding-bottom: 100%;
  }
}
.worksheet-content__image img {
  position: absolute;
  left: 0;
  top: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}
.worksheet-content__image img.worksheet-content__image--visible {
  visibility: visible;
}
.worksheet-content__list {
  padding: 0 12px 0 0;
  width: 100%;
  height: 486px;
  max-width: 90px;
  overflow-x: hidden;
  overflow-y: auto;
  transition: transform 0.3s;
  user-select: none;
  -webkit-touch-callout: none;
}
@media only screen and (max-width: 768px) {
  .worksheet-content__list {
    display: flex;
    padding: 12px 0 8px;
    height: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
  }
}
.document--like-mp .worksheet-content__list {
  height: 600px;
  max-width: 225px;
}
@media only screen and (max-width: 768px) {
  .document--like-mp .worksheet-content__list {
    display: flex;
    padding: 12px 0 8px;
    height: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
  }
}
.document--v2 .worksheet-content__list {
  max-width: 162px;
}
@media only screen and (max-width: 768px) {
  .document--v2 .worksheet-content__list {
    max-width: 100%;
  }
}
.worksheet-content__thumbnail {
  position: relative;
  margin-bottom: 12px;
  width: 80px;
  height: 80px;
  border: 1px solid #ebebeb;
  border-radius: 6px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: transparent;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .worksheet-content__thumbnail {
    margin-right: 20px;
    margin-bottom: 0;
    min-width: 142px;
    max-width: 142px;
  }
}
@media only screen and (max-width: 576px) {
  .worksheet-content__thumbnail {
    margin-right: 8px;
    height: 80px;
    min-width: 80px;
    max-width: 80px;
  }
}
.worksheet-content__thumbnail:hover::after, .worksheet-content__thumbnail--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.2);
}
.document--like-mp .worksheet-content__thumbnail:hover::after, .document--like-mp .worksheet-content__thumbnail--active::after {
  background-color: rgba(31, 31, 31, 0.3);
  backdrop-filter: blur(2.8px);
}
.worksheet-content__thumbnail:last-child {
  margin-right: 0;
  margin-bottom: 0;
}
.worksheet-content__thumbnail img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}
.document--like-mp .worksheet-content__thumbnail {
  width: 212px;
  height: 212px;
}
@media only screen and (max-width: 768px) {
  .document--like-mp .worksheet-content__thumbnail {
    margin-bottom: 0;
    width: 142px;
    height: 142px;
  }
}
@media only screen and (max-width: 576px) {
  .document--like-mp .worksheet-content__thumbnail {
    height: 80px;
    min-width: 80px;
    max-width: 80px;
  }
}
.document--v2 .worksheet-content__thumbnail {
  width: 150px;
  height: 150px;
}
@media only screen and (max-width: 768px) {
  .document--v2 .worksheet-content__thumbnail {
    min-width: 142px;
    max-width: 142px;
  }
}
@media only screen and (max-width: 576px) {
  .document--v2 .worksheet-content__thumbnail {
    height: 80px;
    min-width: 80px;
    max-width: 80px;
  }
}

.presentation-content__wrapper {
  overflow: hidden;
  border: 1px solid #ebebeb;
  border-radius: 16px;
}
.presentation-content__slide {
  display: none;
  width: 100%;
}
.presentation-content__slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.presentation-content__slide.show {
  display: block;
}

.archive-content__title {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.4px;
  color: #1f1f1f;
}
@media only screen and (max-width: 576px) {
  .archive-content__title {
    font-size: 16px;
    line-height: 128%;
    letter-spacing: -0.32px;
  }
}
.archive-content__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.archive-content__item {
  display: flex;
  align-items: center;
  padding: 8px;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  background-color: #fff;
  gap: 8px;
}
.archive-content__item:not(.archive-content__item.active):hover, .archive-content__item:not(.archive-content__item.disabled):hover {
  cursor: pointer;
}
.archive-content__item.active {
  border: 2px solid #24a600;
}
.archive-content__item.disabled {
  cursor: not-allowed !important;
}
.archive-content__item.disabled .archive-content__name,
.archive-content__item.disabled .iu-format-tags {
  opacity: 0.3;
}
.archive-content__name {
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: calc(100% - 36px);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
  text-overflow: ellipsis;
  color: #1f1f1f;
}
@media only screen and (max-width: 576px) {
  .archive-content__name {
    font-size: 14px;
  }
}

.fullscreen-modal {
  display: none;
}

.fullscreen-modal-template .aic-modal__body {
  padding-right: 0;
  overflow: unset;
}
.fullscreen-modal-template .aic-modal__body:has(.presentation-content) {
  padding-right: 16px;
}
@media only screen and (max-width: 576px) {
  .fullscreen-modal-template .aic-modal__body:has(.presentation-content) {
    padding-right: 8px;
  }
}
.fullscreen-modal-template .material-description {
  display: none;
}
.fullscreen-modal-template .material__big-download-button {
  display: none;
}
.fullscreen-modal-template .material__viewer {
  max-width: 100%;
}
.fullscreen-modal-template .material__share-mobile {
  margin-bottom: 0;
}
.fullscreen-modal-template .material-share__popup {
  top: unset;
  bottom: calc(100% + 8px);
}
.fullscreen-modal-template .material-footer {
  justify-content: space-between;
  margin-top: 32px;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .fullscreen-modal-template .material-footer {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 576px) {
  .fullscreen-modal-template .material-footer {
    flex-direction: column;
    gap: 24px;
  }
}
.fullscreen-modal-template .material-footer__buttons {
  margin-left: unset;
}
.fullscreen-modal-template .material-footer__share {
  margin-left: 0;
}
.fullscreen-modal-template .material-footer__bookmark {
  display: none;
}
.fullscreen-modal-template .material-footer__download-button {
  display: block;
}
.fullscreen-modal-template .material-footer__change-view-button {
  display: none;
}
.fullscreen-modal-template .document-content {
  padding: 0;
  max-height: 70vh;
  border: none;
}
.fullscreen-modal-template .document-content__scroll-area {
  padding: 0 16px 0 0;
  max-height: 60vh;
}
@media only screen and (max-height: 830px) {
  .fullscreen-modal-template .presentation-content__slide img {
    max-height: 60vh;
  }
}
.fullscreen-modal-template .material-controls__progress {
  min-width: 40px;
}
@media only screen and (max-width: 576px) {
  .fullscreen-modal-template .material-controls__progress {
    min-width: fit-content;
  }
}

.material-aside {
  padding: 16px;
  border-radius: 5px;
  font-family: "Open Sans", sans-serif;
  background-color: #fff;
}
@media only screen and (max-width: 1230px) {
  .material-aside {
    padding: 0 16px 16px;
    border-radius: 0 0 16px 16px;
  }
}
.material-aside .material-tags {
  margin-bottom: 8px;
}
.material-aside .material-tags--collapse {
  max-height: 63px;
  overflow: hidden;
}
.material-aside .material-rating[data-rating-count="0"][data-feedback-count="0"] {
  display: none;
}
.material-aside .material-rating svg {
  margin-right: 8px;
  width: 14px;
  height: 14px;
}
.material-aside .material-rating__reviews {
  margin-right: 8px;
  margin-bottom: 0;
}
.material-aside .material-rating__vote {
  margin-bottom: 0;
}
.material-aside .material-rating__rating {
  margin-right: 4px;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.28px;
  color: #1f1f1f;
}
.material-aside .material-rating__count {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.28px;
  text-decoration-style: solid;
  text-decoration-line: underline;
  text-underline-position: from-font;
  color: #267f8c;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
}
.material-aside .material-aside-copyright {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 12px;
}
.material-aside .material-aside-copyright__avatar {
  overflow: hidden;
  border-radius: 5px;
}
.material-aside .material-aside-copyright__avatar img {
  display: block;
}
.material-aside .material-aside-copyright__name {
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: #181818;
}
.material-aside .material-formats {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.material-aside .material-formats__title {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #424242;
}
.material-aside .iu-format-tags--md {
  min-height: 25px;
  border: none;
  border-radius: 2px;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  text-transform: lowercase;
  color: #181818;
  background-color: #fff3e0;
}
.material-aside .iu-clickable-tags--md {
  padding: 4px 8px;
  min-height: 27px;
  border-radius: 2px;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #267f8c;
  background-color: rgba(37, 157, 227, 0.1);
}
.material-aside .material-download-button {
  margin-bottom: 16px;
}
.material-aside .material__note {
  margin-top: 24px;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #76767a;
}
.material-aside .material__note a {
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  text-decoration: underline;
  color: #267f8c;
  cursor: pointer;
}
.material-aside .material__note p:not(:last-child) {
  margin-bottom: 8px;
}
.material-aside__created-at, .material-aside__views, .material-aside__downloads {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 110%;
  color: #181818;
}
.material-aside__created-at svg, .material-aside__views svg, .material-aside__downloads svg {
  margin-right: 8px;
  color: #76767a;
}
.material-aside__comments {
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
}
.material-aside__comments svg {
  display: block;
  color: #267f8c;
}
.material-aside__row {
  display: flex;
  align-items: center;
  gap: 32px;
}
.material-aside__row--space-between {
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 16px;
}
.material-aside__tags {
  margin-bottom: 16px;
}
.material-aside__toggle-tags {
  margin: 0;
  padding: 0;
  border: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #267f8c;
  background-color: transparent;
  cursor: pointer;
}
.material-aside__block {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #c8c8c9;
}
.material-aside__bookmark {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  width: fit-content;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.24px;
  color: #8f938d;
  cursor: pointer;
  gap: 8px;
}
@media only screen and (max-width: 1230px) {
  .material-aside__bookmark {
    display: none;
  }
}
.material-aside__bookmark:hover {
  color: #24a600;
}
.material-aside__bookmark.active {
  color: #24a600;
}
@media only screen and (max-width: 768px) {
  .material-aside__download-button--pc {
    display: none;
  }
}
.material-aside__download-button--mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  .material-aside__download-button--mobile {
    display: block;
  }
}
.material-aside__share-mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  .material-aside__share-mobile {
    display: block;
    margin: 0 auto 24px;
    width: fit-content;
  }
}

.material-aside-author__title {
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.32px;
  color: #181818;
}
.material-aside-author__avatar img {
  display: block;
  height: 72px;
  min-width: 72px;
  max-width: 72px;
}
.material-aside-author__row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
  gap: 12px;
}
.material-aside-author__name {
  margin-bottom: 4px;
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.32px;
  color: #181818;
}
.material-aside-author__position {
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  line-height: 140%;
  text-overflow: ellipsis;
  color: #949494;
}
.material-aside-author__contact {
  margin: 4px 0 0;
  padding: 0;
  border: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 110%;
  color: #267f8c;
  background-color: transparent;
}
.material-aside-author__contact:hover {
  text-decoration: underline;
}
.material-aside-author__stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.material-aside-author__stat {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #181818;
}
.material-aside-author__stat a {
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  color: #267f8c;
}
.material-aside-author__stat a:hover {
  text-decoration: underline;
}
.material-aside-author__stat svg {
  margin-right: 8px;
  color: #76767a;
}
.material-aside-author__inner {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  color: #181818;
  gap: 8px;
}
.material-aside-author__inner mark {
  font-weight: 400;
}
.material-aside-author__about {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.32px;
}
.material-aside-author__description {
  -webkit-line-clamp: 5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow: hidden;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-overflow: ellipsis;
}
.material-aside-author__more {
  margin-top: 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  text-decoration: underline;
  color: #267f8c;
  cursor: pointer;
}
.material-aside-author__more:hover {
  text-decoration: none;
}

.material {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 24px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 15px 0 rgba(34, 34, 34, 0.08);
  background-color: #fff;
  gap: 32px;
}
@media only screen and (max-width: 1230px) {
  .material {
    flex-direction: column;
    gap: 0;
  }
}
@media only screen and (max-width: 576px) {
  .material {
    padding: 16px;
    border-radius: 12px;
  }
}
.material--like-mp {
  display: unset;
  padding: 0;
  border-radius: unset;
  box-shadow: unset;
  background-color: transparent;
}
.material--revers {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 1230px) {
  .material--revers {
    flex-direction: column;
  }
}
.material.loading {
  opacity: 0.4;
}
.material.loading::after {
  content: "";
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-image: url("../../../../common/images/loader/loader-82f40b85a4029dce516a384d17bd6993.gif");
  background-position: center;
  background-size: 256px 256px;
  background-repeat: no-repeat;
}
.document--v2 .material {
  scroll-margin-top: 68px;
}
.material__row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media only screen and (max-width: 1230px) {
  .material__row {
    flex-direction: column;
    border-radius: 12px;
    box-shadow: 0 0 5px 0 rgba(31, 31, 31, 0.05), 0 4px 12px 0 rgba(31, 31, 31, 0.08);
    gap: 0;
  }
}
.material--like-mp .material__content {
  position: sticky;
  left: 0;
  top: 80px;
  padding: 24px;
  width: 100%;
  height: fit-content;
  border-radius: 16px;
  box-shadow: 0 0 5px 0 rgba(31, 31, 31, 0.05), 0 4px 12px 0 rgba(31, 31, 31, 0.08);
  background-color: #fff;
}
@media only screen and (max-width: 1230px) {
  .material--like-mp .material__content {
    position: relative;
    left: unset;
    top: unset;
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    box-shadow: none;
  }
}
@media only screen and (max-width: 768px) {
  .material--like-mp .material__content {
    padding: 16px;
    border-radius: 12px 12px 0 0;
  }
}
.material__aside {
  position: sticky;
  left: 0;
  top: 80px;
  width: 100%;
  height: fit-content;
  max-width: 291px;
}
@media only screen and (max-width: 1230px) {
  .material__aside {
    position: relative;
    left: unset;
    top: unset;
    max-width: 100%;
  }
}
.material__column {
  flex: 1 1 0;
  width: 100%;
}
.material__column--main {
  max-width: 582px;
}
@media only screen and (max-width: 1230px) {
  .material__column--main {
    max-width: 100%;
  }
}
.document--v2 .material__column--main {
  max-width: 710px;
}
.material__column--aside {
  position: sticky;
  left: 0;
  top: 72px;
  height: fit-content;
  max-width: 500px;
}
@media only screen and (max-width: 1440px) {
  .material__column--aside {
    max-width: 100%;
  }
}
.document--v2 .material__column--aside {
  max-width: 610px;
}
.material__tags {
  margin-bottom: 24px;
}
@media only screen and (max-width: 576px) {
  .material__tags {
    margin-bottom: 16px;
  }
}
.material__title {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 24px;
  line-height: 116%;
  letter-spacing: -0.24px;
  color: #1f1f1f;
}
@media only screen and (max-width: 1230px) {
  .material__title {
    font-size: 28px;
  }
}
@media only screen and (max-width: 576px) {
  .material__title {
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 20px;
    line-height: 118%;
    letter-spacing: -0.2px;
  }
}
.material__title--mobile {
  display: none;
}
@media only screen and (max-width: 1230px) {
  .material__title--mobile {
    display: block;
  }
}
@media only screen and (max-width: 1230px) {
  .material__title--desktop {
    display: none;
  }
}
.material--like-mp .material__title {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
}
@media only screen and (max-width: 576px) {
  .material--like-mp .material__title {
    margin-bottom: 16px;
    font-size: 18px;
  }
}
.material__viewer-title {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.24px;
  color: #8f938d;
}
@media only screen and (max-width: 576px) {
  .material__viewer-title {
    font-size: 14px;
    letter-spacing: -0.21px;
  }
}
.material__viewer {
  max-width: 582px;
}
.document--like-mp .material__viewer {
  max-width: 808px;
}
.document--v2 .material__viewer {
  max-width: 710px;
}
.material__data {
  margin-bottom: 16px;
}
.material__formats {
  margin-bottom: 16px;
}
@media only screen and (max-width: 576px) {
  .material__formats {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 1230px) {
  .material__actions-wrapper--desktop {
    display: none;
  }
}
.material__description {
  margin-top: 32px;
}
@media only screen and (max-width: 1230px) {
  .material__description {
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 576px) {
  .material__description {
    margin-top: 16px;
  }
}
.material__actions {
  margin-bottom: 24px;
}
@media only screen and (max-width: 1230px) {
  .material__actions {
    display: none;
  }
}
.material__share-mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  .material__share-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
  }
}
.document--like-mp .material__share-mobile {
  display: none;
}
.material__author {
  margin-bottom: 16px;
}
@media only screen and (max-width: 576px) {
  .material__author {
    margin-bottom: 12px;
  }
}
.material__note {
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: -0.24px;
  color: #aab0a7;
}
@media only screen and (max-width: 576px) {
  .material__note {
    font-size: 10px;
    letter-spacing: -0.2px;
  }
}
.material__note p:not(:last-of-type) {
  margin-bottom: 4px;
}
.material__note a {
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: -0.24px;
  text-decoration-line: underline;
  color: #24a600;
  cursor: pointer;
}
@media only screen and (max-width: 576px) {
  .material__note a {
    font-size: 10px;
  }
}
.material__note a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .document--like-mp .material__big-download-button {
    display: none;
  }
}
.material__download-button-mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  .material__download-button-mobile {
    display: block;
    margin-bottom: 24px;
  }
  .document--like-mp .material__download-button-mobile {
    margin-bottom: 16px;
  }
}

body {
  background-color: #f5f5f5;
}

.document {
  margin-top: 48px;
  font-family: "Golos Text", sans-serif;
}
@media only screen and (max-width: 768px) {
  .document {
    overflow: hidden;
  }
}
@media only screen and (max-width: 576px) {
  .document {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 576px) {
  .document--like-mp {
    margin-top: 24px;
  }
}
.document__header {
  margin-bottom: 24px;
}
@media only screen and (max-width: 576px) {
  .document__header {
    margin-bottom: 16px;
  }
}
.document--v2 .document__header {
  margin-bottom: 14px;
}
.document--like-mp .document__header {
  margin-bottom: 32px;
}
@media only screen and (max-width: 576px) {
  .document--like-mp .document__header {
    margin-bottom: 24px;
  }
}
.document__title {
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 34px;
  line-height: 112%;
  letter-spacing: -1.36px;
  color: #1f1f1f;
}
@media only screen and (max-width: 576px) {
  .document__title {
    font-size: 24px;
    line-height: 112%;
    letter-spacing: -0.96px;
    color: #1f1f1f;
  }
}
.document--like-mp .document__title {
  font-size: 40px;
  letter-spacing: -1.6px;
}
@media only screen and (max-width: 576px) {
  .document--like-mp .document__title {
    font-size: 24px;
    line-height: 118%;
    letter-spacing: -0.96px;
  }
}
.document--v2 .document__title {
  margin-bottom: 16px;
}
@media only screen and (max-width: 576px) {
  .document--v2 .document__title {
    margin-bottom: 12px;
  }
}
.document__subtitle {
  margin-bottom: 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.24px;
  color: #1f1f1f;
}
@media only screen and (max-width: 576px) {
  .document__subtitle {
    font-size: 14px;
    letter-spacing: -0.21px;
  }
}
.document__subtitle b {
  font-weight: 500;
}
.document__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 56px;
  width: 100%;
}
.document--v2 .document__container {
  flex-direction: column;
  gap: 56px;
}
.document--like-mp .document__container {
  flex-direction: column;
  gap: 40px;
}
@media only screen and (max-width: 576px) {
  .document--like-mp .document__container {
    gap: 24px;
  }
}
.document__similar {
  margin-top: 12px;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #1f1f1f;
}
@media only screen and (max-width: 576px) {
  .document__similar {
    margin-top: 0;
  }
}
.document__more {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.document__more .material:not(:last-of-type) {
  margin-bottom: 56px;
}
.document--like-mp .document__more .material:not(:last-of-type) {
  margin-bottom: 40px;
}
@media only screen and (max-width: 576px) {
  .document--like-mp .document__more .material:not(:last-of-type) {
    margin-bottom: 24px;
  }
}
.document__more:empty {
  display: none;
}
.document__more.loading {
  opacity: 0.6;
}
.document__sidebar-wrapper {
  position: sticky;
  top: 72px;
  align-self: flex-start;
}
@media only screen and (max-width: 1440px) {
  .document__sidebar-wrapper {
    display: none;
  }
}
.document__content {
  width: 100%;
  max-width: 1162px;
}
@media only screen and (max-width: 1440px) {
  .document__content {
    max-width: 100%;
  }
}
.document--like-mp .document__content {
  max-width: 100%;
}
.document--v2 .document__content {
  max-width: 100%;
}
.document__item {
  scroll-margin-top: 68px;
}
@media only screen and (max-width: 576px) {
  .document__item {
    scroll-margin-top: 48px;
  }
}
.document__item:not(:last-of-type) {
  margin-bottom: 56px;
}
@media only screen and (max-width: 576px) {
  .document__item:not(:last-of-type) {
    margin-bottom: 32px;
  }
}

/*# sourceMappingURL=document.output.css.map */
