

/* Start:/local/templates/mendeleev-redesign/components/mendeleev/orm.news.list/guides/style.css?17804984997315*/
.guides-list {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: -32px;
    padding-top: 40px;
    padding-bottom: 64px;
    border-radius: 32px;
    background-color: var(--white);
}
.guides-list__container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.guides-list__title {
    margin: 0;
    font-family: var(--font-family-headers);
    font-size: 28px;
    font-weight: 600;
    line-height: 34px;
    color: var(--black);
}
.guides-list__grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.guides-list__grid--loading {
    pointer-events: none;
}
.guide-card--skeleton {
    opacity: 0;
    visibility: hidden;
    min-height: 460px;
    position: relative;
    background: var(--gray-100, #F6F6F7);
    overflow: hidden;
    pointer-events: none;
    transition: opacity 300ms ease, visibility 0s linear 300ms;
}
.guide-card--skeleton.skeleton-visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 300ms ease, visibility 0s ease;
}
.guide-card--skeleton::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, var(--gray-50, #F9F9FA) 50%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: shimmer-diagonal 1.5s infinite;
}
.guide-card__skeleton-block {
    display: block;
    background: rgba(31, 34, 56, 0.08);
}
.guide-card__skeleton-block--title,
.guide-card__skeleton-block--subtitle,
.guide-card__skeleton-block--description {
    height: 20px;
    border-radius: 8px;
}
.guide-card__skeleton-block--title {
    width: 72%;
    height: 26px;
}
.guide-card__skeleton-block--subtitle {
    width: 92%;
}
.guide-card__skeleton-block--description {
    width: 100%;
}
.guide-card__skeleton-block--short {
    width: 64%;
}
.guide-card__skeleton-block--button {
    width: 100%;
    height: 48px;
    margin-top: auto;
    border-radius: var(--sm, 12px);
}
@keyframes shimmer-diagonal {
    0% {
        transform: translate(-50%, -50%) translateX(-150%);
    }
    100% {
        transform: translate(-50%, -50%) translateX(150%);
    }
}
@media (prefers-reduced-motion: reduce) {
    .guide-card--skeleton::after {
        animation: none;
    }
}
.guides-list__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.guides-list__load-more {
    box-sizing: border-box;
    width: 200px;
    max-width: 100%;
    height: 48px;
    padding: 11px 16px;
    border: 1px solid var(--alpha-gray-200, rgba(31, 34, 56, 0.2));
    border-radius: var(--sm, 12px);
    background-color: var(--white, #fff);
    font-family: var(--font-family-body, "NunitoSans", Arial, sans-serif);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    color: var(--black, #1F2238);
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.guides-list__load-more:hover {
    background: var(--black, #1F2238);
    border-color: var(--black, #1F2238);
    color: var(--white, #FFF);
}
.guides-list__load-more:disabled {
    opacity: 0.6;
    cursor: default;
}
@media (min-width: 768px) {
    .guides-list {
        padding-bottom: 80px;
    }

    .guides-list__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .guides-list__title {
        font-size: 32px;
        line-height: 40px;
    }
}
@media (min-width: 992px) {
    .guides-list__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (min-width: 1600px) {
    .guides-list {
        padding-top: 64px;
    }
}
.guides-list__head {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}
.guides-list__head .catalog-tabs {
    width: auto;
    margin-left: -16px;
    margin-right: -16px;
}
.guides-list__head .catalog-tabs .tab__items {
    width: max-content;
    min-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
}
.guides-list__head .catalog-tabs .tab__items::before {
    left: 16px;
    right: 16px;
    width: auto;
}
.guides-list__filter {
    display: flex;
}
.guides-list__filter .form-group {
    position: relative;
    margin-bottom: 0;
}
.guides-list__filter .form-group__combobox {
    position: relative;
}
.guides-list__filter .field--icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 16px;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    color: var(--black, #1F2238);
    pointer-events: none;
}
.guides-list__filter .field--icon svg {
    display: block;
    width: 24px;
    height: 24px;
}
.guides-list__filter input.button {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    width: 168px;
    max-width: 100%;
    height: 48px;
    margin: 0;
    padding: 0 16px 0 48px;
    border: none;
    border-radius: var(--sm, 12px);
    background-color: var(--white, #fff);
    box-shadow: 0 -6px 5px rgba(31, 34, 56, 0.03), 0 6px 3px rgba(31, 34, 56, 0.02), 0 6px 5px rgba(31, 34, 56, 0.03);
    font-family: var(--font-family-body, "NunitoSans", Arial, sans-serif);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    color: var(--black, #1F2238);
    cursor: pointer;
}
.guides-list__filter .form-group__dropdown-items {
    z-index: 5;
    display: none;
    position: absolute;
    left: 0;
    top: 56px;
    width: 100%;
    min-width: 168px;
    max-height: 280px;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    padding: 4px;
    list-style: none;
    background-color: var(--white, #fff);
    box-shadow: 0 20px 24px -4px rgba(31, 27, 29, 0.06), 0 8px 8px -4px rgba(31, 27, 29, 0.03);
    border-radius: var(--sm, 12px);
    scrollbar-color: rgba(41, 34, 36, 0.22) #FFFFFF;
    scrollbar-width: thin;
}
.guides-list__filter .form-group__dropdown-items.open {
    display: flex;
}
.guides-list__filter .form-group__dropdown-items::-webkit-scrollbar {
    width: 4px;
    background-color: #FBFAF9;
}
.guides-list__filter .form-group__dropdown-items::-webkit-scrollbar-thumb {
    background-color: rgba(41, 34, 36, 0.22);
    border-radius: 9em;
}
.guides-list__filter .form-group__dropdown-item {
    box-sizing: border-box;
    width: 100%;
    margin: 0 0 4px;
    padding: 8px 12px;
    border-radius: 8px;
    font-family: var(--font-family-body, "NunitoSans", Arial, sans-serif);
    font-size: 16px;
    line-height: 24px;
    color: #292224;
    cursor: pointer;
}
.guides-list__filter .form-group__dropdown-item:last-child {
    margin-bottom: 0;
}
.guides-list__filter .form-group__dropdown-item:hover,
.guides-list__filter .form-group__dropdown-item.active {
    background: #FFF7F5;
}
@media (min-width: 576px) {
    .guides-list__container {
        gap: 48px;
    }

    .guides-list__head {
        gap: 40px;
    }

    .guides-list__head .catalog-tabs {
        margin-left: 0;
        margin-right: 0;
    }

    .guides-list__head .catalog-tabs .tab__items {
        padding-left: 0;
        padding-right: 0;
    }

    .guides-list__head .catalog-tabs .tab__items::before {
        left: 0;
        right: auto;
        width: 100%;
    }
}

/* End */


/* Start:/local/templates/mendeleev-redesign/components/bitrix/news.detail/first-screen/style.css?177995061715631*/
.first-screen {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
    max-height: 1080px;
    min-height: 564px;
    background-color: #1F2238;
    overflow: hidden;
}
.first-screen .container {
    padding: unset !important;
}
.tag-separate {
    width: 3px;
    height: 3px;
    border-radius: 999px;
    background-color: #FFF !important;
}
.special.tobolsk .container {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    --column-gap: 16px;
}
.first-screen__video {
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    margin-top: -100px;
    overflow: hidden;
}
.first-screen__video iframe {
    position: relative;
    transform: scale(1.2);
}
.first-screen > img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-position: center;
    object-fit: cover;
    z-index: 0;
}
.first-screen::before {
    z-index: 2;
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(31, 34, 56, 0.50) 10%, rgba(31, 34, 56, 0.00) 30.16%, rgba(31, 34, 56, 0.50) 60%);
}
.first-screen__container-content {
    display: flex;
    width: 100%;
    height: 100vh;
    max-height: 1080px;
    min-height: 564px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}
.first-screen__wrapper {
    z-index: 3;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.first-screen__inner {
    z-index: 2;
    padding: 0 var(--16, 16px) var(--64, 64px) var(--16, 16px);
    position: relative;
    display: flex;
    font-family: "NunitoSans";
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: var(--24, 24px);
    flex: 1 0 0;
    align-self: stretch;
}
.first-screen__breadcrumbs {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-line-clamp: 1;
}
.first-screen__breadcrumbs a,
.first-screen__breadcrumbs span {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.first-screen__breadcrumbs a,
.first-screen__breadcrumbs a:hover {
    color: var(--color-white);
}
.first-screen__breadcrumbs a::after {
    content: "/";
    margin-left: 8px;
}
.first-screen__breadcrumbs li:last-child {
    color: #BCBDC3 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.first-screen__content--inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: var(--24, 24px);
    align-self: stretch;
}
.first-screen__title-description-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.first-screen__title {
    color: #FFF;
    font-feature-settings: "liga" off, "clig" off;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 0;
}
.first-screen__description {
    color: var(--color-white);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.first-screen__button {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    background-color: var(--primary-500, #E86A4D);
    color: var(--color-white);
    -webkit-border-radius: var(--border-radius-min);
    -moz-border-radius: var(--border-radius-min);
    border-radius: 12px;
    border: 0;
}
.first-screen__button:hover {
    background: var(--primary-600, #DE5D49);
}
.first-screen__button:active {
    background: var(--primary-500, #E86A4D);
    box-shadow: 0 0 0 3px rgba(245, 95, 60, 0.20);
}
.first-screen__upcoming_events-wrapper {
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}
.first-screen__upcoming_events {
    padding-top: 32px;
    z-index: 1;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    border-radius: 16px;
    background: #B52645;
    row-gap: 32px;
}
.first-screen__upcoming_events-icon {
    position: absolute;
    top: 0;
    z-index: 0;
    pointer-events: none;
    color: #B52645;
}
.first-screen__upcoming_events-icon--left,
.first-screen__upcoming_events-icon--right {
    display: none;
    top: -33px;
    width: 62.5px;
    height: 225px;
}
.first-screen__upcoming_events-icon--left {
    left: -28px;
}
.first-screen__upcoming_events-icon--right {
    right: -28px;
}
.first-screen__upcoming_events-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 4px;
    padding: 0 16px;
}
.first-screen__upcoming_events-header-icon svg {
    width: 67.001px;
    height: 94.298px;
}
.first-screen__upcoming_events-header-title-text {
    padding-top: 8px;
    position: relative;
    color: #B0E1ED;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px; /* 118.75% */
    word-spacing: 100vw;
}
.first-screen__upcoming_events-slider-wrapper {
    position: relative;
    display: flex;
    border-top: 2px solid #96D4E4;
    width: 100%;
    height: 100%;
    margin-bottom: 24px;
}
.first-screen__upcoming_events-slider {
    width: 100%;
    height: 100%;
    padding: 24px 16px 0;
    overflow: hidden;
}
.first-screen__upcoming_events-slider .first-screen__upcoming_events-slide {
    width: 210px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.first-screen__upcoming_events-slider .first-screen__upcoming_events-slide-image {
    position: relative;
    height: 100px;
}
.first-screen__upcoming_events-slider .first-screen__upcoming_events-slide-image img {
    height: 100%;
    width: 100%;
    border-radius: 4px;
    object-fit: cover;
}
.first-screen__upcoming_events-slider .first-screen__upcoming_events-slide-info-tags {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}
.first-screen__upcoming_events-slider .first-screen__upcoming_events-slide-info-tag:first-child {
    font-weight: 600;
}
.first-screen__upcoming_events-slider .first-screen__upcoming_events-slide-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}
.first-screen__button-mobile {
    width: 100%;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}
.first-screen__button-mobile button {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: calc(56px + 32px);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    background-color: #B52645;
    color: var(--color-white);
    -webkit-border-radius: var(--border-radius-min);
    -moz-border-radius: var(--border-radius-min);
    border-radius: 12px;
    border: 0;
    cursor: pointer;
}
.first-screen__upcoming_events-slide-info-tag-city {
    font-family: "NunitoSans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}
.first-screen__upcoming_events-slide-info-name {
    overflow: hidden;
    color: #FFF;
    font-feature-settings: "liga" off, "clig" off;
    text-overflow: ellipsis;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    align-self: stretch;
}
@media (min-width: 375px) {
    .first-screen {
        min-height: 512px;
    }
    .first-screen > img {
        aspect-ratio: 9 / 16;
    }
    .first-screen__container-content {
        min-height: 512px;
    }
    .first-screen__description {
        color: var(--color-white);
        font-size: 20px;
        line-height: 28px;
    }
}
@media (min-width: 576px) {
    .first-screen {
        max-height: 1200px;
        min-height: 484px;
    }
    .first-screen > img {
        aspect-ratio: 2 / 1;
        transform-origin: top center;
        object-position: top center;
        height: 100%;
    }
    .first-screen::after {
        transform: scale(2.15);
        transform-origin: top center;
    }
    .first-screen__button {
        width: fit-content;
    }
    .first-screen__upcoming_events-header-icon svg {
        width: 39.079px;
        height: 55px;
    }
    .first-screen__upcoming_events-slider {
        padding: 24px 24px 0;
    }
    .first-screen__container-content {
        max-height: 1200px;
        min-height: 484px;
    }
    .first-screen__inner {
        padding: 0 0 var(--64, 64px);
    }
}
@media (min-width: 768px) {
    .first-screen {
        min-height: 584px;
    }
    .first-screen__inner {
        padding: 0;
    }
    .first-screen__container-content {
        padding: 0 0 var(--80, 80px);
        min-height: 584px;
    }
    .first-screen__content--inner {
        gap: var(--40, 40px);
    }
    .first-screen__title-description-wrapper {
        gap: 24px;
    }
    .first-screen__title {
        font-size: 52px;
        line-height: 60px
    }
    .first-screen__upcoming_events {
        padding: 20px 16px;
        flex-direction: row;
        gap: 16px;
    }
    .first-screen__upcoming_events-slider-wrapper {
        margin-bottom: 0;
    }
    .first-screen__upcoming_events-header {
        width: 207px;
        gap: 16px;
    }
    .first-screen__description {
        max-width: 630px;
    }
    .first-screen__upcoming_events-header-title-text {
        padding: 8px 0;
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        line-height: 34px;
    }
    .first-screen__upcoming_events-slider .first-screen__upcoming_events-slide-info-tags,
    .first-screen__upcoming_events-slider .first-screen__upcoming_events-slide-info-tag-city {
        line-height: 22px;
    }
    .first-screen__upcoming_events-header-icon svg {
        width: 69.631px;
        height: 98px;
    }
    .first-screen__upcoming_events-slider {
        padding: 16px 0;
        overflow: hidden;
    }
    .first-screen__upcoming_events-slider-wrapper {
        border-bottom: 2px solid #96D4E4;
    }
    .first-screen__upcoming_events-slider .first-screen__upcoming_events-slide {
        width: 100%;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }
    .first-screen__upcoming_events-slider .first-screen__upcoming_events-slide:last-child {
        margin-bottom: 0 !important;
    }
    .first-screen__upcoming_events-slider .first-screen__upcoming_events-slide-image {
        align-self: stretch;
        min-width: 112px;
        max-width: 112px;
        height: 86px;
    }
    .first-screen__upcoming_events-slider .first-screen__upcoming_events-slide-info-tag:first-child {
        font-weight: 400;
    }
    .first-screen__upcoming_events-slide-info-name {
        line-height: 22px;
    }
    .first-screen__upcoming_events-wrapper {
        gap: 40px;
    }
    .first-screen__button-mobile button {
        width: fit-content;
        margin-bottom: calc(56px + 48px);
    }
}
@media (min-width: 1024px) {
    .first-screen {
        min-height: 584px;
    }
    .first-screen__inner {
        max-width: 776px;
        padding: 0;
    }
    .first-screen__container-content {
        padding: 0 160px 80px 0;
    }
    .first-screen > img {
        height: 100%;
        object-fit: cover;
        transform-origin: unset;
        object-position: center;
    }
    .first-screen::after {
        aspect-ratio: unset;
        transform: scale(1.9) translateY(25px) translateX(-9%);
        transform-origin: unset;
    }
    .first-screen__upcoming_events-header-title-text {
        font-size: 32px;
        line-height: 38px;
    }
    .first-screen__inner {
        padding: 0;
    }
    .first-screen__upcoming_events {
        flex-direction: column;
    }
    .first-screen__upcoming_events {
        padding: 30px 0 20px;
        width: 382px;
    }
    .first-screen__upcoming_events-header-icon svg {
        width: 63.947px;
        height: 90px;
    }
    .first-screen__upcoming_events-slider-wrapper {
        border-bottom: 0;
    }
    .first-screen__upcoming_events-slider {
        padding: 20px 20px 0 20px;
    }
    .first-screen__button-mobile {
        display: none;
    }
    .first-screen__upcoming_events-icon--left,
    .first-screen__upcoming_events-icon--right {
        display: flex;
    }
}
@media (min-width: 1200px) {
    .first-screen {
        min-height: 640px;
    }
    .first-screen__inner {
        max-width: 840px;
    }
    .first-screen__container-content {
        padding: 0 284px 96px 0;
        min-height: 640px;
    }
    .first-screen__title {
        font-size: 60px;
        line-height: 68px
    }
    .first-screen__description {
        color: var(--color-white);
        font-size: 22px;
        line-height: 30px;
    }
}
@media (min-width: 1240px) {
    .first-screen::after {
        transform: scale(1.75) translateY(15px) translateX(-8%);
    }
    .first-screen__upcoming_events-icon--left,
    .first-screen__upcoming_events-icon--right {
        top: -40px;
        width: 74.91px;
        height: 269.677px;
    }
    .first-screen__upcoming_events-icon--left {
        left: -45px;
    }
    .first-screen__upcoming_events-icon--right {
        right: -45px;
    }
}
@media (min-width: 1440px) {
    .first-screen__inner {
        padding-top: 0;
    }
    .first-screen__upcoming_events {
        width: 422px;
        padding-top: 40px;
        padding-bottom: 22px;
    }
    .first-screen::after {
        transform: scale(1.35) translateY(12px) translateX(-8%);
    }
    .first-screen__upcoming_events-slider {
        padding: 24px 24px 0 22px;
    }
    .first-screen__upcoming_events-slider .first-screen__upcoming_events-slide-image {
        min-width: 140px;
        max-width: 140px;
    }
    .first-screen__upcoming_events-header-icon svg {
        width: 79.444px;
        height: 110px;
    }
    .first-screen__upcoming_events-header-title-text {
        font-size: 38px;
        line-height: 44px;
    }
}
@media (min-width: 1600px) {
    .first-screen {
        max-height: 1400px;
        min-height: 640px;
    }
    .first-screen__inner {
        max-width: 872px;
    }
    .first-screen__container-content {
        max-height: 1400px;
        padding: 0 448px 96px 0;
    }
}
@media (min-width: 1690px) {
    .first-screen__upcoming_events-slider {
        padding: 24px 22px 0 22px;
    }
    .first-screen__title {
        font-size: 60px;
        line-height: 68px;
    }
    .first-screen__description {
        font-size: 22px;
        line-height: 30px;
    }
    .first-screen > img {
        transform: none;
        object-fit: cover;
    }
    .first-screen::after {
        transform: none;
    }
}
@media (max-width: 1023px){
    .first-screen.overlay-md::before {
        background: var(--alpha-gray-500, rgba(31, 34, 56, 0.50));
    }
}
/* End */


/* Start:/local/components/mendeleev/what-to-do-slider/templates/main-page/style.css?177634290310256*/
.what-to-do {
    position: relative;
    background: var(--backgroud-firm-color);
    padding: 96px 0 152px 0;
    overflow: hidden;
    border-radius: 32px;
}

.what-to-do__path {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.what-to-do__inner {
    color: #fff !important;
    height: 600px;
    align-items: center;
}

.what-to-do__info-bottom,
.what-to-do__info-top {
    display: none;
}

.what-to-do__info-top--title {
    color: var(--white, #FFF);
    font-family: "NunitoSans";
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 34px;
}

.what-to-do__info-top--description {
    color: var(--gray-100, #E9E9EB);
    font-family: "NunitoSans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.what-to-do__info-bottom {
    position: relative;
    z-index: 5;
}

.what-to-do__info-bottom--button a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    padding: 0 16px;
    color: var(--white, #FFF);
    font-family: "NunitoSans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    border-radius: 12px;
    background: var(--black, #1F2238);
}

.what-to-do__info-bottom--button svg {
    margin-left: 15px;
}

.what-to-do-slider__item-first {
    display: flex !important;
    padding-right: 24px;
    min-width: 424px;
    height: 499px;
    row-gap: 56px;
    flex-direction: column;
    color: #fff !important;
}

.what-to-do-slider__item-first--text-content {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.what-to-do-slider__item-first-icon {
    height: 100%;
    display: flex;
    align-items: end;
}
.what-to-do-slider__item-first--title {
    color: var(--white, #FFF);
    font-family: "NunitoSans";
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 56px;
}

.what-to-do-slider__item-first--description {
    color: var(--gray-100, #E9E9EB);
    font-family: "NunitoSans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.what-to-do-slider__item-first--button a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: max-content;
    column-gap: 8px;
    position: relative;
    padding: 0 16px;
    height: 48px;
    border-radius: 12px;
    color: var(--white, #FFF);
    background: var(--black, #1F2238);
    font-family: "NunitoSans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.slider__button-prev:active,
.slider__button-next:active  {
    background-color: white !important;
}
.what-to-do__info-bottom--button a:hover,
.what-to-do-slider__item-first--button a:hover {
    transition: 0.3s;
    background: var(--color-natural-beige);
    color: var(--color-white);
}

.what-to-do-slider {
    position: relative;
    height: 100%;
}

.what-to-do-slider__items {
    align-items: center;
}

.what-to-do-slider__item.swiper-slide {
    position: relative;
    max-height: 499px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff !important;
    overflow: hidden;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
}
.what-to-do-slider__item--content {
    z-index: 1;
    height: 100%;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.what-to-do-slider__item--content-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.what-to-do-slider__item--content-bottom {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}
.what-to-do-slider__item--content-bottom-author {
    color: var(--white, #FFF);
    font-family: "NunitoSans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
.what-to-do-slider__item--content-top-time {
    display: flex;
    height: 24px;
    padding: 0 8px;
    color: var(--black, #1F2238);
    font-family: "NunitoSans";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: var(--white, #FFF);
}
.what-to-do-slider__item--overlay {
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#26202200, #26202240, #262022cc);
}

.what-to-do-slider__item--image {
    position: absolute;
    height: 100%;
    width: 900px;
    left: -300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.what-to-do-slider__item--image__img{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.what-to-do-slider__item--video {
    height: 300%;
    top: -100%;
}

.what-to-do-slider__item--video iframe {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}

.what-to-do-slider__item--image img {
    height: 100%;
    width: 900px;
}

.what-to-do-slider__item--title {
    z-index: 1;
}

.what-to-do-slider__item--title a {
    font-size: 14px;
    line-height: 140%;
    margin-top: 10px;
    padding: 0 20px;
}

.what-to-do-slider__item--description {
    z-index: 1;
    color: var(--white, #FFF);
    font-family: "NunitoSans";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
}

.what-to-do-slider__item-last {
    position: relative;
    background: var(--backgroud-firm-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-height: 600px;
    height: 100%;
    border: 1px solid var(--color-white);
    border-radius: 4px;
}

.what-to-do-slider__item-last--title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 32px;
}

.what-to-do-slider__item-last--button {
    position: absolute;
    left: 50%;
    bottom: 30px;
    width: fit-content;
    white-space: nowrap;
    transform: translateX(-50%);
}

.what-to-do-slider__item-last--button a {
    position: relative;
    font-size: 15px;
    line-height: 160%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 15px 65px 15px 15px;
    border: 1px solid #fff;
    border-radius: 3px;
    margin-top: 50px;
    display: inline-block;
    transition: 0.3s;
    color: var(--color-white);
}

.what-to-do-slider__item-last--button a:hover {
    color: var(--color-black);
    background: var(--color-natural-beige);
}

.what-to-do-slider__item-last--button svg {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.what-to-do-slider__item-first,
.what-to-do-slider__item.swiper-slide {
    height: 499px !important;
}
@media (max-width: 1440px) {
    .what-to-do-slider__item-first {
        min-width: 360px;
    }
    .what-to-do-slider__item-first,
    .what-to-do-slider__item.swiper-slide {
        height: 499px !important;
    }
}
@media (max-width: 1024px) {
    .what-to-do-slider__item-first--title {
        font-size: 40px;
        line-height: 48px;
    }
    .what-to-do-slider__item-first--description {
        font-size: 18px;
        line-height: 24px;
    }
    .what-to-do-slider__item-first--text-content {
        row-gap: 24px;
    }
    .what-to-do {
        padding: 80px 0 136px 0;
    }
    .what-to-do-slider__item-first {
        min-width: 296px;
        width: 296px;
        row-gap: 48px;
    }
    .what-to-do-slider__item--description{
        font-size: 22px;
        line-height: 28px;
    }
    .what-to-do-slider__item-first,
    .what-to-do-slider__item.swiper-slide {
        height: 474px !important;
    }
}

@media (max-width: 768px) {
    .what-to-do {
        padding: 128px 0;
        border-radius: 24px;
    }
    .what-to-do__inner {
        height: fit-content;
        align-items: initial;
    }
    .what-to-do-slider {
        height: 460px;
    }
    .what-to-do__info-top {
        row-gap: 48px;
    }
    .what-to-do__info-top--text-content {
        display: flex;
        flex-direction: column;
        row-gap: 24px;
    }
    .what-to-do-slider__item--image {
        width: 100%;
        left: 0;
    }
    .what-to-do-slider__item-first {
        min-width: 276px;
        width: 276px;
        padding-right: 0;
    }
    .what-to-do-slider__item-first,
    .what-to-do-slider__item.swiper-slide {
        height: 442px !important;
    }
}
@media (max-width: 767px) {
    .what-to-do-slider__item-first,
    .what-to-do-slider__item.swiper-slide {
        height: 397px !important;
    }
}
@media (max-width: 576px) {
    .what-to-do__inner {
        display: flex;
        flex-direction: column;
        row-gap: 40px;
    }
    .what-to-do__info-top--title svg {
        display: none;
    }
    .what-to-do-slider__item-first {
        display: none !important;
    }
    .what-to-do-slider__item--image img {
        display: none;
    }

    .what-to-do__info-bottom {
        display: block;
    }
    .what-to-do__info-top {
        display: flex;
        flex-direction: column;
        row-gap: 40px;
    }
    .what-to-do-slider__item-first--title {
        font-size: 28px;
        line-height: 34px;
    }
    .what-to-do {
        padding: 112px 0;
    }
    .what-to-do-slider__item-first {
        row-gap: 40px;
    }
}
@media (max-width: 575px) {
    .what-to-do-slider__item.swiper-slide {
        min-width: unset;
        height: 477px !important;
    }
}
@media (max-width: 375px) {
    .what-to-do-slider__item--description {
        font-size: 20px;
        line-height: 26px;
    }
    .what-to-do-slider__item.swiper-slide {
        height: 400px !important;
    }
}
@media (max-width: 425px) {
    .what-to-do__info-bottom--button a {
        width: 100%;
    }
}
/* End */


/* Start:/local/components/mendeleev/favorites.button/templates/.default/style.css?17658004154574*/
.favorite-button__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    width: 40px;
    height: 40px;
    color: #FFFFFF;
    backdrop-filter: blur(5px);
    -webkit-border-radius: var(--border-radius-sm, 8px);
    -moz-border-radius: var(--border-radius-sm, 8px);
    border-radius: var(--border-radius-sm, 8px);
    cursor: pointer;
}
.favorite-button__toggle.active {
    color: #F24046;
}
.favorite-button__toggle.active * {
    fill: #F24046;
    color: #F24046;
}
.favorite-button__toggle.text-mode {
    width: max-content;
}

.favorite-button__toggle.text-mode:after {
    content: attr(title);
    padding-left: 12px;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    color: var(--black, #1F2238);
}

.favorite-popup {
    z-index: 999;
    position: fixed;
    display: flex;
    align-items: flex-end;
    cursor: default;
}
.favorite-popup,
.favorite-popup .favorite-popup__background {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.favorite-popup:not(.active) {
    display: none;
}
.favorite-popup .favorite-popup__background {
    position: absolute;
    background: var(--alpha-gray-600, #1F223899);
}
.favorite-popup .favorite-popup__container {
    position: relative;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    border-radius: 12px 12px 0 0;
    background: var(--white, #FFF);
    box-shadow: 0 8px 48px -8px rgba(31, 34, 56, 0.12);
}
.favorite-popup .favorite-popup__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.favorite-popup .favorite-popup__header--title {
    margin-top: 16px;
    color: var(--gray-900, #1F1B1D);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
}
.favorite-popup .favorite-popup__header .favorite-popup--button {
    outline: none;
    border: none;
    color: var(--gray-500, #8F909B);
    background: transparent;
    cursor: pointer;
}
.favorite-popup .favorite-popup__body {}
.favorite-popup .favorite-popup__body .favorite-popup--description {
    margin-bottom: 16px;
    color: var(--gray-700, #626474);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.route-pop-up-add__route-meta{
    overflow: hidden;
    color: var(--gray-700, #626474);
    font-feature-settings: 'liga' off, 'clig' off;
    text-overflow: ellipsis;
    /* pc b/footnote 16-22-400 */
    font-family: "NunitoSans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
}
.favorite-popup .favorite-popup__body:not(.visible) {
    display: none;
}
.favorite-popup .favorite-popup__footer {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.favorite-popup .favorite-popup__footer .favorite-popup--button {
    padding: 12px 16px;
    width: 100%;
    border-radius: var(--sm, 12px);
    border: 1px solid var(--alpha-gray-200, #1F223833);
    background: transparent;
    text-align: center;
    color: var(--black, #1F2238);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    cursor: pointer;
}
.favorite-popup .favorite-popup__footer .favorite-popup--button[data-popup-action="confirm"] {
    background: var(--primary-500, #E86A4D);
    color: var(--white, #FFF);
}

@keyframes rotatePreload {
    0% {
        transform: rotate(0deg);
    }
    50% {
        color: #EC6A51;
    }
    100% {
        transform: rotate(360deg);
    }
}
.favorite-popup--preload {
    text-align: center;
}
.favorite-popup:not(.loading) .favorite-popup--preload {
    display: none;
}
.favorite-popup .favorite-popup--preload svg {
    color: #555;
}
.favorite-popup.loading .favorite-popup--preload svg {
    animation: rotatePreload 1600ms infinite;
}
@media (max-width: 1023px) {
    .favorite-button__toggle.text-mode {
        max-width: 44px;
    }
    .favorite-button__toggle.text-mode:after {
        content: "";
        padding-left: 0;
    }
}
@media (min-width: 768px) {
    .favorite-popup {
        justify-content: center;
        align-items: center;
    }
    .favorite-popup .favorite-popup__container {
        width: 440px;
        border-radius: 12px;
    }
    .favorite-popup .favorite-popup__footer {
        flex-wrap: nowrap;
        gap: 8px;
    }
    .favorite-popup .route-pop-up-add__route {
        cursor: default;
    }
    .favorite-popup .route-pop-up-add__route:hover {
        box-shadow: none;
    }
}
/* End */
/* /local/templates/mendeleev-redesign/components/mendeleev/orm.news.list/guides/style.css?17804984997315 */
/* /local/templates/mendeleev-redesign/components/bitrix/news.detail/first-screen/style.css?177995061715631 */
/* /local/components/mendeleev/what-to-do-slider/templates/main-page/style.css?177634290310256 */
/* /local/components/mendeleev/favorites.button/templates/.default/style.css?17658004154574 */
