/* -- Обнуление стилей -- */
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  background-color: transparent;
}
td {
    border: 1px solid #999999;
    padding: 4px 8px;
}
a:active,
a:hover {
  outline: 0;
}
ul[class],
ol[class] {
  list-style: none;
}
video::-webkit-media-controls-fullscreen-button {
  display: none;
}
button,
input,
optgroup,
select,
fieldset,
textarea {
  margin: 0;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  background-color: transparent;
}
::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* ---- Общие стили --- */
html body {
  color: #1b1b1b;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.08px;
  color: #1b1b1b;
  position: relative;
  background: #d8c9c1;
  height: 100vh;
  height: 100dvh;
  height: 100%;
  position: fixed;
  width: 100%;
}
.container {
  padding: 0 16px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  max-width: 1920px;
  position: relative;
}
/* Кнопка поиска */
.container > .button {
  position: absolute !important;
  right: 24px;
  bottom: 24px;
  border-radius: 6px;
  padding-right: 16px;
  background-image: linear-gradient(
    45deg,
    rgba(255, 231, 112, 1) 10%,
    rgba(135, 114, 33, 1) 49%,
    rgba(219, 199, 107, 1) 67%,
    rgba(181, 156, 44, 1) 91%
  );
  background-origin: border-box;
  box-shadow: inset 0 100vw #d8c9c1;
  border: 6px solid transparent;
  z-index: 99;
}
body a,
body a:hover {
  color: #1b1b1b;
  text-decoration: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: "Forum", sans-serif;
  font-weight: 400;
  color: #1b1b1b;
}
body h1 {
  font-size: 122px;
  line-height: 182px;
  letter-spacing: -1.83px;
}
body h2 {
  font-size: 76px;
  line-height: 106px;
  letter-spacing: -0.38px;
}
body h3 {
  font-size: 56px;
  line-height: 72px;
}
body h4 {
  font-size: 43px;
  line-height: 56px;
  letter-spacing: 0.108px;
}
body h5 {
  font-size: 31px;
  line-height: 40px;
}
body h6 {
  font-size: 25px;
  line-height: 32px;
  letter-spacing: 0.038px;
}
body h1.decor,
body h2.decor,
body h3.decor,
body h4.decor,
body h5.decor,
body h6.decor {
  font-family: "Raleway", sans-serif;
}
body h1.decor {
  font-size: 99px;
  line-height: 148px;
  letter-spacing: -1.485px;
}
body h2.decor {
  font-size: 62px;
  line-height: 86px;
  letter-spacing: -0.31px;
}
body h3.decor {
  font-size: 49px;
  font-weight: 500;
  line-height: 68px;
}
body h4.decor {
  font-size: 35px;
  font-weight: 500;
  line-height: 46px;
  letter-spacing: 0.088px;
}
body h5.decor {
  font-size: 25px;
  font-weight: 500;
  line-height: 32px;
}
body h6.decor {
  font-size: 21px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.032px;
}
body p {
  margin: 16px 0;
}
.button {
  display: inline-block;
  font-family: "Raleway", sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.032px;
  text-align: center;
  color: #1b1b1b;
  border-radius: 12px;
  padding: 6px 8px;
  text-decoration: none !important;
}
.primary-button {
  border: 5px solid #ffe770;
  background: #d8c9c1;
  box-shadow: 7px 3px 80px 0px rgba(31, 29, 32, 0.1),
    2px 1px 16px 0px rgba(31, 29, 32, 0.15),
    1px 0px 6px 0px rgba(31, 29, 32, 0.3);
}
.secondary-button {
  border-radius: 38px;
  border: 2px solid #009aeb;
  color: #06c;
  background: rgba(255, 255, 255, 0.5);
}
.thirdy-button {
  color: #06c;
  padding: 8px 10px;
  background: transparent;
}
.primary-button.icon,
.secondary-button.icon,
.thirdy-button.icon {
  padding-left: 48px;
  position: relative;
}
.primary-button.icon svg,
.primary-button.icon img,
.secondary-button.icon svg,
.secondary-button.icon img,
.thirdy-button.icon svg,
.thirdy-button.icon img {
  position: absolute;
  left: 8px;
  top: 9px;
}

/* Анимация ---------------------------------*/
.container.anim-items {
  opacity: 0;
  transform: translate(0, 34px);
  transition: all 1.2s ease;
}
.container.anim-items.animActive {
  opacity: 1;
  transform: translate(0);
}

/* Header --------------- */
.header {
  border-bottom: 1px solid #e3e3e3;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  height: 72px;
  position: relative;
  z-index: 9;
}
.header .container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 32px;
}
.header__block {
  position: absolute;
  right: 16px;
  display: flex;
  gap: 48px;
}
/* Языки */
.header .header__lang {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 12px;
  letter-spacing: 0.175px;
}
.header .btn-back {
  position: absolute;
  left: 16px;
  padding: 12px;
}
.header + .container {
  display: flex;
  height: calc(100% - 72px);
  padding: 0;
}
.vipuskniki--inner .btn-back,
.book-pdf--inner .btn-back,
.static .btn-back,
.celebrity--inner .btn-back {
  position: absolute;
  top: -50px;
  left: 32px;
  z-index: 99;
}

/* Menu ---------------- */
.navbar {
  background: #d8c9c1;
}
.nav-menu-wrapper {
  padding: 16px 0 80px 24px;
}
.nav-menu .nav-menu-item:first-child {
  display: none;
}
.nav-menu .nav-menu-item {
  width: 312px;
  height: 296px;
  padding: 16px 0;
  margin-bottom: 8px;
  transition: all 0.4s ease-out;
}
.nav-menu .nav-menu-item a {
  position: relative;
  color: #12151c;
  font-family: "Forum", sans-serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 40px;
  width: 312px;
  height: 100%;
  padding: 0 48px 45px 24px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
}
.nav-menu-wrapper
  > .nav-menu:has(> .nav-menu-item:first-child.current)
  > .nav-menu-item.active.drop-down,
.nav-menu .nav-menu-item.current.drop-down,
.nav-menu .nav-menu-item.aktive.drop-down:has(.current) {
  background-image: url(../images/menu-back.svg);
  transition: all 0.4s ease-out;
}
.nav-menu .nav-menu-item:nth-child(2) a::before {
  content: url(../images/icons/menu/kippa.svg);
  position: absolute;
  top: 60px;
  left: calc(50% - 65px);
}
.nav-menu .nav-menu-item:nth-child(3) a::before {
  content: url(../images/icons/menu/study.svg);
  position: absolute;
  top: 60px;
  left: calc(50% - 65px);
}
.nav-menu .nav-menu-item:nth-child(4) a::before {
  content: url(../images/icons/menu/celebrity.svg);
  position: absolute;
  top: 60px;
  left: calc(50% - 65px);
}
.drop-down-menu {
  display: none;
}

/* Главная ---------- */
.main,
.main:has(.static .blocks .card) {
  background: url(../images/fon_infokiosk.jpg);
  background-position: center right;
  width: 100%;
  height: 100%;
  padding: 48px;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
/* если есть видео */
.main:has(.video) {
  padding: 0;
}
/* если карта и библиотека */
.main:has(.static),
.main:has(.pdf) {
  background: url(../images/fon_karta.jpg);
  background-position: center right;
}
/* если есть поиск */
.main:has(.genericView),
.main:has(.static .k2SearchBlock) {
  background: url(../images/fon_poisk.jpg);
  background-position: center;
}
/* если статичная */
body:has(.static) .header h3,
body:has(.vipuskniki--inner) .header h3,
body:has(.book-pdf--inner) .header h3,
body:has(.celebrity--inner) .header h3 {
  display: none;
}
body:has(.static) .header + .container > .button,
body:has(.poems) .header + .container > .button,
body:has(.vipuskniki--inner) .header + .container > .button,
body:has(.book-pdf--inner) .header + .container > .button,
body:has(.celebrity--inner) .header + .container > .button {
  display: none;
}
body:has(.infokiosk-three) .main {
  background: #f7e7ca;
  padding: 48px;
  max-height: 1018px;
  position: relative;
}
body:has(.infokiosk-three) .main:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #f7e7ca;
}
body:has(.infokiosk-three) .main .static {
  background: url(../images/fon-inner.svg);
  background-repeat: no-repeat;
  width: 100%;
  height: 920px;
  overflow: hidden;
}
body:has(.haim) .main {
  background: url(../images/fon_haim.jpg) !important;
  background-position: center;
}
body:has(.igry-cards) .main,
body:has(.vipuskniki--inner) .main,
body:has(.celebrity--inner) .main {
  background: transparent;
  background-position: center;
}
body:has(.vipuskniki--inner) .navbar,
body:has(.celebrity--inner) .navbar,
body:has(.book-pdf--inner) .navbar {
  display: none;
}
/* Карточки */
.cards,
.celebrity {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cards__wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.card__wrapper .card:first-child {
  margin-bottom: 48px;
}
.card__text-title {
  width: fit-content;
  border-radius: 4px;
  background: linear-gradient(
    314deg,
    rgba(247, 245, 242, 0.56) 17.69%,
    rgba(247, 245, 242, 0.21) 84.09%
  );
  box-shadow: 6px -6px 6px 0px rgba(173, 161, 154, 0.5) inset,
    12px -12px 12px 0px rgba(255, 255, 255, 0.5) inset,
    -6px 6px 6px 0px rgba(255, 255, 255, 0.5) inset,
    -12px 12px 12px 0px rgba(173, 161, 154, 0.5) inset;
  backdrop-filter: blur(12.5px);
  padding: 48px;
}
.card__text-title h4 {
  background: url(../images/card-back.svg);
  background-repeat: no-repeat;
}
.card__text-title h4 a {
  width: 582px;
  height: 112px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Заголовки */
.itemListCategory2,
.itemHeader {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, 15%);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}
.itemImageBlock img {
  width: 40px !important;
}
h3.newscontainer-itemTitle.contentheading {
  font-size: 43px;
  line-height: 56px;
  letter-spacing: 0.108px;
  white-space: nowrap;
}

/* Поиск */
.k2SearchBlock {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  margin-top: 15%;
  position: relative;
}
.genericSearchForm .k2-input,
.k2SearchBlock .inputbox {
  padding: 15px 16px;
  padding-right: 115px;
  border-radius: 6px;
  background-color: #fff;
  width: 100%;
}
.genericSearchForm .k2-input:focus-visible,
.k2SearchBlock .inputbox:focus-visible {
  outline: none;
}
.genericSearchForm .k2-submit,
.search-button {
  position: absolute;
  right: 0;
  border-radius: 6px;
  background-image: linear-gradient(
    45deg,
    rgba(255, 231, 112, 1) 10%,
    rgba(135, 114, 33, 1) 49%,
    rgba(219, 199, 107, 1) 67%,
    rgba(181, 156, 44, 1) 91%
  );
  background-origin: border-box;
  box-shadow: inset 0 100vw #dbc76b;
  border: 6px solid transparent;

  color: #12151c;
  padding: 12px 16px;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 500;
  line-height: 12px;
  letter-spacing: 0.175px;
  text-transform: uppercase;
}

/* Внутренняя статика */
.infokiosk-one ~ .container .blocks {
  padding: 0 132px;
  margin-top: 32px;
  padding-bottom: 24px;
  max-height: 880px !important;
}
.infokiosk-one ~ .container .blocks h5 {
  margin-bottom: 24px;
}
.block {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
}
.blocks .block:last-child,
.blocks > p:last-child {
  margin-bottom: 24px;
}
.block.right {
  flex-direction: row-reverse;
}
/* Кнопка видео */
.itemIntroText .button {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, 0%);
  z-index: 99;
}
/* -- Скролл */
#k2Container .gm-scrollbar-container .gm-scroll-view {
  width: 100% !important;
  scrollbar-width: none !important;
}
/* vertical scrollbar track */
#k2Container .gm-scrollbar.-vertical {
  width: 24px;
  border-radius: 4px;
  background-color: #f7e7ca;
  top: 52px;
  bottom: 84px;
  right: 16px;
}
/* scrollbar thumb */
#k2Container .gm-scrollbar.-vertical .thumb {
  width: 100%;
  height: 52px !important;
  border-radius: 6px;
  border: 4px solid transparent;
  background: #dbc76b;
  background-image: linear-gradient(
    60deg,
    #ffe770 13.39%,
    #877221 33.16%,
    #dbc76b 66.84%,
    #b59c2c 86.61%
  );
  background-origin: border-box;
  box-shadow: inset 0 100vw #dbc76b;
}
#k2Container .gm-scrollbar.-vertical .thumb:after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 24px;
  height: 52px;
  border-radius: 6px;
  box-shadow: 0px 8px 32px 0px rgba(91, 32, 0, 0.1),
    0px 1px 2px 0px rgba(62, 22, 0, 0.3);
}

/* библиотеки */
body:has(.main .static__content .itemFullText iframe) .navbar {
  display: none;
}
body:has(.main .static__content .itemFullText iframe) .main {
  padding: 0;
  background: transparent;
}
body:has(.main .celebrity--inner) .main::after,
body:has(.main .vipuskniki--inner) .main::after,
body:has(.main .static__content .itemFullText iframe) .main::after {
  background: transparent;
}
.static:has(.card__wrapper),
.static__content:has(.card__wrapper),
.part2-item:has(.card__wrapper) {
  height: 100%;
}
.blocks:has(.card__wrapper) {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.pdf__items {
  display: flex;
  gap: 48px;
}
.pdf-item {
  padding: 16px;
  border-radius: 4px;
  background: rgba(216, 201, 193, 0.15);
  box-shadow: 6px -6px 6px 0px rgba(173, 161, 154, 0.5) inset,
    12px -12px 12px 0px rgba(255, 255, 255, 0.5) inset,
    -6px 6px 6px 0px rgba(255, 255, 255, 0.5) inset,
    -12px 12px 12px 0px rgba(173, 161, 154, 0.5) inset;
  backdrop-filter: blur(12.5px);
  width: 512px !important;
  height: 824px !important;
}
.pdf-item .groupLeading {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pdf__text {
  height: 80px;
}
.pdf__title {
  text-align: center;
}
.pdf__img {
  width: 480px;
  height: calc(100% - 96px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.pdf__img a {
  display: flex;
  width: 100%;
}
.pdf__img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
/* Фильтр */
.pdf-filter {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  margin-top: -8px;
}
.pdf-filter .k2SearchBlock {
  margin-top: 0;
}

/* Страница поиска */
.genericSearchForm {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
}
.genericView h1 {
  font-size: 43px;
  line-height: 56px;
  letter-spacing: 0.108px;
  padding: 16px 0;
  text-align: center;
}
.genericItemList {
  display: flex;
  gap: 48px;
}
.genericItemHeader {
  height: 80px;
}
.genericItemTitle {
  font-size: 31px;
  line-height: 40px;
  text-align: center;
}
.genericItemTitle a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.genericItemView {
  padding: 16px;
  border-radius: 4px;
  background: rgba(216, 201, 193, 0.15);
  box-shadow: 6px -6px 6px 0px rgba(173, 161, 154, 0.5) inset,
    12px -12px 12px 0px rgba(255, 255, 255, 0.5) inset,
    -6px 6px 6px 0px rgba(255, 255, 255, 0.5) inset,
    -12px 12px 12px 0px rgba(173, 161, 154, 0.5) inset;
  backdrop-filter: blur(12.5px);
  width: 512px !important;
  height: 824px !important;

  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.genericItemBody {
  width: 480px;
  height: calc(100% - 96px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.genericItemImageBlock {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}
.genericItemImage {
  width: 100%;
}
.genericItemImageBlock a {
  display: flex;
  width: 100%;
}
.genericItemImageBlock img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

/* Игры */
.igry-cards__wrapper {
  display: flex;
  gap: 48px;
}
.igry-card {
  backdrop-filter: blur(12.5px);
}
.igry-card__img img {
  width: 576px !important;
  max-height: 920px;
}
.itemExtraFields .typeImage,
.igry-card__img {
  position: relative;
}
.itemExtraFields .typeImage::after,
.igry-card__img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  border-radius: 4px;
  box-shadow: 6px -6px 6px 0px rgba(173, 161, 154, 0.5) inset,
    12px -12px 12px 0px rgba(255, 255, 255, 0.5) inset,
    -6px 6px 6px 0px rgba(255, 255, 255, 0.5) inset,
    -12px 12px 12px 0px rgba(173, 161, 154, 0.5) inset;
}
.igry-card__text {
  position: absolute;
  top: calc(50% - 68px);
  left: 48px;
  right: 48px;
}
.igry-card__title h4 {
  background: url(../images/igry-back.svg);
  background-repeat: no-repeat;
  padding: 22px 16px;
  height: 136px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.igry-card__title h4 a {
  padding: 22px 16px;
}

/* Хаим Бялик */
/* Фотогалерея */
.itemImageGallery h3 {
  display: none;
}
.mediaSwiper {
  height: 912px;
}
img.sigProImg {
  background-image: none !important;
  width: 100% !important;
  height: 100% !important;
  max-height: 848px;
  object-fit: contain;
}
.sigProLink {
  pointer-events: none;
  display: flex;
  flex-direction: column-reverse;
  gap: 24px;
  width: 100% !important;
  height: 100% !important;
  height: 912px !important;
  align-items: center;
}
.sigProCaption {
  font-family: "Forum", sans-serif;
  font-size: 31px;
  line-height: 40px;
}
.itemImageGallery .swiper-button-next,
.itemImageGallery .swiper-button-prev {
  top: 550px;
}
/* Стихи */
.static__content .part2-item,
.static__content .blocks,
.static__content .poems {
  height: 100%;
}
body:has(.poems) .main .static__content {
  background: url(../images/stihy--inner.svg);
  background-repeat: no-repeat;
  width: 1200px;
  height: 920px;
  padding: 48px;
  overflow: hidden;
  margin: 0 auto;
}
.poem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.poem-text {
  font-family: "Raleway", sans-serif;
  font-size: 21px;
  line-height: 28px;
  letter-spacing: 0.032px;
  margin-top: 16px;
}
.blocks .swiper-button-prev {
  position: absolute;
  left: 300px;
  top: 500px;
}
.blocks .swiper-button-next {
  position: absolute;
  right: 300px;
  top: 500px;
}
.itemImageGallery .swiper-button-prev:after,
.blocks .swiper-button-prev:after {
  content: url(../images/icons/chevron-prev.svg);
}
.itemImageGallery .swiper-button-next:after,
.blocks .swiper-button-next:after {
  content: url(../images/icons/chevron-next.svg);
}
/* книги */
.main:has(.book-pdf) {
  overflow: hidden;
}
.main:has(.static.book-pdf--inner) {
  position: static;
}
.book-pdf {
  margin: 0 64px !important;
  height: 840px !important;
}
.book-pdf .igry-card,
.book-pdf .igry-card__img img {
  width: 432px !important;
  height: 608px;
}
.book-pdf .igry-cards__wrapper {
  gap: 0;
  align-items: center;
}
.book-pdf .igry-cards__wrapper {
  margin: 0 -12px;
}
.book-pdf .igry-card {
  margin: 0 12px;
}
.book-pdf .igry-card__title h4 {
  font-family: "Raleway", sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 32px;
  background: url(../images/book-back.svg);
  height: 160px;
}
.main:has(.book-pdf) .swiper-button-prev:after {
  content: url(../images/icons/chevron-prev.svg);
}
.main:has(.book-pdf) .swiper-button-next:after {
  content: url(../images/icons/chevron-next.svg);
}
.main:has(.book-pdf) .swiper-button-prev {
  position: absolute;
  left: 48px;
  top: 480px;
}
.main:has(.book-pdf) .swiper-button-next {
  position: absolute;
  right: 48px;
  top: 480px;
}
/* выпускники */
.book-pdf.vypuskniki {
  margin: 0 60px !important;
}
.newscontainer-itemFullText.itemFullText.blocks-vipusk {
  max-height: 630px !important;
}
.vypuskniki .igry-card__title h4 {
  font-family: "Raleway", sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.032px;
  background: url(../images/vypusk-back.svg);
  height: 112px;
}
.vypuskniki .igry-card,
.vypuskniki .igry-card__img img {
  width: 318px !important;
  height: 408px;
}
.vypuskniki .igry-card__text {
  position: absolute;
  top: auto;
  bottom: 16px;
  left: 16px;
  right: 16px;
}
.vypuskniki .igry-cards__wrapper {
  gap: 24px 0;
  flex-wrap: wrap;
  flex-direction: column;
}
.vipuskniki--inner .static__content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.vipusk__container .itemAuthor {
  font-family: "Forum", sans-serif;
  font-size: 25px;
  line-height: 32px;
  letter-spacing: 0.038px;
}
.vipusk__container .itemAuthor span {
  margin-bottom: 16px;
  display: block;
}
.vipusk__container .itemImageBlock img {
  width: auto !important;
  height: 448px !important;
}
.vipusk__container .part1-item {
  border-radius: 4px;
  background: #fff;
  padding: 24px;
  height: fit-content;
}
.vipusk__container .itemIntroText p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.035px;
}
.vipusk__container {
  display: flex;
  gap: 24px;
  align-items: center;
  background: url(../images/vipusk-inner.svg);
  background-repeat: no-repeat;
  width: 1200px;
  height: 912px;
  overflow: hidden;
  padding: 48px;
  position: relative;
}
.static__content .vipusk__container .part2-item {
  height: auto;
}
.vipusk__container .part2-item .blocks {
  max-height: 630px;
}
.vipusk__container .part2-item .gm-scrollbar-container {
  position: static;
}
#k2Container .vipusk__container .gm-scrollbar.-vertical {
  top: 84px;
}
.vipuskniki--inner .itemExtraFields {
  margin-left: 96px;
  position: relative;
}
.itemExtraFields .typeImage img {
  width: 432px !important;
  height: 608px;
}
.vipuskniki--inner .typeLink {
  position: absolute;
  top: calc(50% - 68px);
  left: 48px;
  right: 48px;
}
.vipuskniki--inner .typeLink .itemExtraFieldsValue {
  font-family: "Raleway", sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 32px;
  background: url(../images/vipusk-book--inner.svg);
  height: 112px;
  display: flex;
}
.vipuskniki--inner .typeLink .itemExtraFieldsValue a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* хаим */
body:has(.haim) .card__wrapper .card:nth-child(2) {
  margin-bottom: 48px;
}
body:has(.haim) .itemHeader h3 {
  display: none;
}
body:has(.haim) .header h3 {
  display: block;
}
body:has(.haim) .header + .container > .button {
  display: block;
}
.genericItemIntroText {
  display: none;
}
