/* stylelint-disable */
.share {
  display: flex;
  align-items: center;
  margin-top: 24px;
  gap: 16px;
}
@media only screen and (max-width: 992px) {
  .share {
    display: none;
  }
}
.share__text {
  font-weight: 500;
  font-size: 14px;
  line-height: 125%;
  letter-spacing: -0.28px;
  color: #8f938d;
}
.share__items {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
@media only screen and (max-width: 768px) {
  .share__items {
    flex-direction: column;
    gap: 12px;
  }
}
.share__item {
  position: relative;
}
.share__button {
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  background-color: #fff;
}
.share__icon {
  display: block;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 8px 0 rgba(34, 34, 34, 0.08);
}
.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.2s ease;
  pointer-events: none;
}
.share__tooltip.visible {
  opacity: 1;
  pointer-events: auto;
}

.container:has(.book) {
  max-width: 1420px;
}

.container:has(.library-content-container),
.container:has(.big-worksheet__title) {
  max-width: 1248px;
}

.book {
  justify-content: center;
  width: 100%;
  font-family: "Golos Text", sans-serif;
}
@media only screen and (max-width: 576px) {
  .book {
    margin-block-end: 24px;
  }
}
@media only screen and (max-width: 992px) {
  .book.worksheet-aside__data--desktop,
  .book .worksheet-aside__sidebar {
    display: block;
  }
}
@media only screen and (max-width: 992px) {
  .book .worksheet-aside__data {
    grid-column: span 2;
    grid-row: 3;
    max-width: 100%;
  }
}
.book__meta-info {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 125%;
  letter-spacing: -0.28px;
  color: #676b67;
  gap: 16px;
}
.book__container {
  display: grid;
  grid-template-columns: minmax(600px, 880px) minmax(220px, 292px);
  grid-template-rows: max-content max-content;
  width: 100%;
  gap: 20px;
}
@media only screen and (max-width: 1230px) {
  .book__container {
    grid-template-columns: 693px 291px;
  }
}
@media only screen and (max-width: 992px) {
  .book__container {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}
.book__header {
  position: relative;
  display: flex;
  grid-column: span 2;
  padding: 16px;
  min-height: 212px;
  border-radius: 16px;
  box-shadow: 0 0 5px 0 rgba(31, 31, 31, 0.05), 0 4px 4px 0 rgba(31, 31, 31, 0.1);
  background-color: #fff;
  gap: 24px;
}
@media only screen and (max-width: 576px) {
  .book__header {
    flex-direction: column;
    gap: 16px;
  }
}
.book__bookmark {
  all: unset;
  position: absolute;
  right: 16px;
  top: 16px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 0 5px 0 rgba(31, 31, 31, 0.05), 0 4px 4px 0 rgba(31, 31, 31, 0.1);
  background-color: #fff;
  transition: border-color 0.2s ease;
  cursor: pointer;
}
@media only screen and (max-width: 576px) {
  .book__bookmark {
    right: 24px;
    top: 24px;
    z-index: 10;
    width: 36px;
    height: 36px;
  }
  .book__bookmark svg {
    width: 20px;
    height: 20px;
  }
}
.book__bookmark:hover {
  border: 1px solid #1f1f1f;
}
.book__bookmark svg {
  display: block;
}
.book__bookmark-fill {
  color: #00bc4b;
}
.book__bookmark--isFavorite:hover {
  border: 1px solid #00bc4b;
}
.book__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}
@media only screen and (max-width: 576px) {
  .book__info {
    gap: 16px;
  }
}
.book__info-btn {
  align-self: flex-start;
}
@media only screen and (max-width: 576px) {
  .book__info-btn {
    width: 100%;
  }
}
.book__title {
  width: calc(100% - 56px);
  font-weight: 500;
  font-style: normal;
  font-size: 30px;
  line-height: 120%;
  letter-spacing: -0.9px;
  margin-block-end: 16px;
  text-wrap: balance;
}
@media only screen and (max-width: 576px) {
  .book__title {
    width: 100%;
    font-size: 20px;
    line-height: 118%;
    letter-spacing: -0.2px;
  }
}
.book__title-admin {
  color: red;
}
.book__title-admin a {
  color: red;
}
.book__author {
  display: inline-block;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.4px;
  color: #124700;
  margin-block-end: 16px;
}
@media only screen and (max-width: 576px) {
  .book__author {
    font-size: 16px;
  }
}
.book__meta-info {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 125%;
  letter-spacing: -0.28px;
  color: #676b67;
  gap: 16px;
}
.book__duration.hidden {
  display: none;
}

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