

/* Start:/local/templates/vue_info_terminal/template_styles.css?169926193350033*/
:root {
    --primary-color: #01AC8A;
    --primary-dark-color: #429B87;
    --primary-border-color: #BAE9E6;
    --primary-bg-color: #DFF6F6;
    --primary-filter-disabled-color: #A7CCC4;
    --primary-body-color: #0B1915;
    --main-page-title-margin: 0;

    --white-color: #FFFFFF;
    --grey-border-color: #E2E5E7;
    --yellow-light-color: #FAEBD7;
    --yellow-color: #F9E6CD;
}

:root #belinka {
    --primary-color: #26A9AB;
    --primary-dark-color: #219597;
    --primary-border-color: #A7E5E6;
    --primary-bg-color: #DCF8F9;
    --primary-filter-disabled-color: #9BC3C4;
    --primary-body-color: #082121;
    --main-page-title-margin: 0;
}

:root #book03 {
    --primary-color: #DF1641;
    --primary-dark-color: #C31339;
    --primary-border-color: #FBA7B9;
    --primary-bg-color: #F7E1E6;
    --primary-filter-disabled-color: #EE9EAF;
    --primary-body-color: #0E0104;
    --main-page-title-margin: 8rem;
}

:root #panaeva {
    --primary-color: #007542;
    --primary-dark-color: #005731;
    --primary-border-color: #8DC3B4;
    --primary-bg-color: #DBF1E8;
    --primary-filter-disabled-color: #93B9A8;
    --primary-body-color: #001A0E;
    --main-page-title-margin: 0;
}

:root #smart {
    /* real brand color #BBBFC2 */
    --primary-color: #777E83;
    --primary-dark-color: #4B5053;
    --primary-border-color: #BBBFC2;
    --primary-bg-color: #EFF0F0;
    --primary-filter-disabled-color: #BBBFC2;
    --primary-body-color: #27292B;
    --main-page-title-margin: 0;
}

* {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    user-select: none;
}

body {
    margin: 0;
}

html,
body {
    font-family: 'Montserrat', sans-serif;
}

#application>div::-webkit-scrollbar {
    width: 6px;
}

#application>div::-webkit-scrollbar-track {
    background-color: #e4e4e4;
    border-radius: 100px;
}

#application>div::-webkit-scrollbar-thumb {
    background-color: #abb4b3;
    border-radius: 100px;
}

.mb-7px {
    margin-bottom: 7px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 15px;
}

#vv-page .grid {
    grid-template-columns: 1fr 1fr;
}

/* menu panel and items */
.nav-menu {
    position: fixed;
    display: flex;
    justify-content: space-between;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 40px 66px;
    background-color: var(--white-color);
    border-top: 2px #D7D7D7 solid;
    z-index: 2;
    transition: background-color 0.6s ease-in-out;
}

.main-page.nav-menu {
    background-color: transparent;
    border: none;
    box-shadow: none !important;
}

.nav-menu .item {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    width: 157px;
    height: 125px;
    text-align: center;
    border-radius: 23px;
    padding: 17px 0;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}

.nav-menu .item.vv span {
    height: 20px;
    padding: 0 17px;
}

.nav-menu .item.active {
    background-color: var(--primary-color);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    border-radius: 23px;
    height: 125px;
    transition: background-color 0.3s ease-in-out;
}

.nav-menu .item>svg {
    align-self: center;
    margin-bottom: 10px;
    opacity: 0.7;
    transition: opacity 0.3s ease-in-out;
}

.main-page.nav-menu .item>svg {
    opacity: 0.5;
}

.nav-menu .item>svg g,
.nav-menu .item>svg path,
.nav-menu .item>svg circle {
    fill: var(--primary-body-color);
    transition: color 0.6s ease-in-out;
}

.main-page.nav-menu .item>svg g,
.main-page.nav-menu .item>svg path,
.main-page.nav-menu .item>svg circle {
    fill: var(--white-color) !important;
}

.nav-menu .item.active>svg {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.nav-menu .item.active>svg g,
.nav-menu .item.active path,
.nav-menu .item.active circle {
    fill: var(--white-color) !important;
}

.nav-menu .item span {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: var(--primary-body-color);
}

.main-page.nav-menu .item span {
    color: var(--white-color) !important;
}

.nav-menu .item.active span {
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: var(--white-color) !important;
}

/* transitions in router-view */
.moveUp-enter-active {
    animation: moveUp 0.6s ease-in-out;
}

@keyframes moveUp {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

.moveUp-leave-active {
    animation: fadeOut 0.3s ease-in-out;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

#main-page .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('https://cbsykt.ru/upload/medialibrary/aef/vf6sk2rgmkvnv4mwzid511s2ip6mytzx/Oblozhka-na-glavnoy.jpg');
    opacity: 0.9;
    z-index: -10;
}

#main-page .main {
    padding: 0 42px;
}

#main-page .logo {
    margin-top: 44px;
    margin-left: 17px;
}

#main-page .logo>img {
    height: 252px;
}

/* title of cbs */
#main-page .cbs-title {
    margin: 30px 17px 0 17px;
    color: var(--white-color);
}

#main-page .cbs-title>.cbs {
    font-weight: 700;
    font-size: 65px;
    line-height: 79px;
    text-transform: uppercase;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

#main-page .cbs-title>.cbs {
    margin-top: var(--main-page-title-margin);
}

#sozvezdie #main-page .cbs-title>.cbs {
    margin-top: 5rem;
}

#main-page .cbs-title .contacts-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

#main-page .cbs-title .city {
    font-weight: 600;
    font-size: 36px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

#main-page div#contacts.btn {
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    text-align: center;
    color: var(--primary-color);
    background-color: var(--white-color);
    padding: 15px 31px;
    border-radius: 12px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    transition: box-shadow 0.3s ease-in-out,
        background-color 0.3s ease-in-out;
}

#main-page div#contacts.btn:active {
    box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.2);
    background-color: var(--primary-bg-color);
    color: var(--primary-dark-color);
}

/* modal */
.popup {
    color: var(--primary-body-color);
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 30;
    opacity: 0;
    top: -200%;
    transform: translate(0, -50%) scale(0.5);
    display: none;
    transition: top 1000ms ease-in-out,
        opacity 0.3s ease-in-out,
        transform 1000ms ease-in-out;
}

.popup.active {
    opacity: 1;
    top: 50%;
    transform: translate(0, -50%) scale(1);
    transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.43, 1.19);
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.popup .loading {
    background: url('/local/img/loading-white.png') no-repeat 0 0;
    width: 110px;
    height: 110px;
    margin: calc(50vh - 55px) auto auto auto;
    background-size: 110px auto;
    animation: rotation 0.8s linear infinite;
    opacity: 0.7;
    display: none;
}

.popup .loading.active {
    display: block;
}

.popup .popup-container {
    padding: 0 63px;
}

.center {
    position: fixed;
    top: 0;
    left: 0;
}

.popup-bg-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(7.5px);
}

.popup .popup-content {
    position: absolute;
    left: 62px;
    top: -200%;
    z-index: 30;
    box-sizing: border-box;
    opacity: 0;
    transform: translate(0, -50%) scale(0.5);
    transition: top 1000ms ease-in-out,
        opacity 0.3s ease-in-out,
        transform 1000ms ease-in-out;
}

.popup .popup-content.active {
    opacity: 1;
    top: 326px;
    transform: scale(1);
    transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.43, 1.19);
}

.popup-wrap {
    background-color: white;
    width: 956px;
    height: 1165px;
    position: relative;
    border-radius: 65px;
    border-top-left-radius: 67px;
    border-top-right-radius: 67px;
}

.popup .close-tip {
    color: white;
    font-weight: 700;
    font-size: 22px;
    line-height: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 26px;
}

.popup .close-tip>img {
    width: 22px;
    height: 22px;
    margin-right: 12px;
}

.popup .popup-container,
.popup .lib-logo {
    opacity: 0;
}

.popup .popup-container {
    position: relative;
    top: 10px;
}

.popup.active .popup-container,
.popup.active .lib-logo {
    transition: all 300ms ease-in-out 200ms;
    opacity: 1;
}

.popup.active .popup-container {
    top: 0;
}

.popup.active .lib-logo {
    top: 58px;
}

/* modal of cbs */
.popup .popup-cbs-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    padding-top: 56px;
}

#main-page .cbs-contacts-wrap {
    margin-top: 44px;
    display: flex;
}

#main-page .cbs-contacts-wrap>div:nth-child(2n+1) {
    flex: 1;
    padding: 16px 0;
}

#main-page .cbs-contacts-wrap>div:nth-child(2n) {
    height: 786px;
    border-left: 1px var(--primary-border-color) solid;
}

#main-page .cbs-contacts-wrap>div:first-child {
    margin-right: 19px;
}

#main-page .cbs-contacts-wrap>div:nth-child(3) {
    margin-left: 19px;
}

#main-page .cbs-contacts-wrap .item {
    display: flex;
    margin-bottom: 34px;
    min-height: 32px;
}

.popup .cbs-lib-icon {
    align-self: center;
    width: 100%;
    max-width: 42px;
    margin-right: 19px;
}

.popup svg.cbs-lib-icon path {
    fill: var(--primary-color);
}

.popup .lib-contact-qr-wrap {
    align-self: center;
    background: var(--primary-bg-color);
    border: 2px var(--primary-border-color) solid;
    border-radius: 14px;
    color: var(--primary-color);
    display: flex;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    padding: 9px 15px;
}

.popup .lib-contact-qr-wrap>svg {
    margin-right: 11px;
    min-width: 22px;
    height: 22px;
    align-self: center;
}

.popup .lib-contact-qr-wrap>svg path {
    fill: var(--primary-color);
}

.popup .lib-contact-qr-wrap.empty {
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    display: block;
    padding: 0;
}

.popup .schedule {
    font-weight: 500;
    font-size: 22px;
    line-height: 27px;
}

#main-page .popup .schedule {
    margin-bottom: 34px;
}

.popup .error {
    color: white;
    font-size: 32px;
    font-weight: 500;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 58%;
    width: 100%;
    transition: opacity 0.3s ease-in-out,
        top 0.3s ease-in-out;
}

.popup .error.active {
    opacity: 1;
    top: calc(50% + 19px);
    transition: opacity 0.3s ease-in-out,
        top 0.2s ease-in-out;
}

#popup-qr.popup .popup-content {
    top: -150% !important;
    left: 130px;
}

#popup-qr.popup .popup-content.active {
    top: 447px !important;
}

#popup-qr .popup-wrap {
    width: 820px;
    height: 820px;
}

#popup-qr.popup .popup-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#popup-qr.popup .popup-cbs-title {
    flex: 1;
}

#popup-qr.popup .popup-cbs-title div {
    align-items: center;
    display: flex;
}

#popup-qr.popup .popup-cbs-title svg {
    margin-right: 19px;
}

#popup-qr.popup .popup-cbs-title svg path {
    fill: var(--primary-color);
}

#popup-qr.popup .qr-code-img {
    margin: 50px auto 50px auto;
    width: 394px;
    height: 394px;
}

#popup-qr.popup .qr-code-value {
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    margin-bottom: 63px;
    text-align: center;
}

/* main page: affiche block */
#main-page .affiche-container {
    margin-top: 95px;
    height: 412px;
    padding: 0 22px;
    border-radius: 36px;
    background-color: var(--white-color);
    position: relative;
}

#main-page .affiche-container>.nav {
    display: flex;
    justify-content: space-between;
    padding-top: 22px;
}

#main-page .affiche-container>.nav>.title {
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    flex: 1;
    color: var(--primary-color);
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
    width: auto !important;
}

.swiper-pagination {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    align-self: center;
}

.swiper-pagination-bullet {
    width: 11px !important;
    height: 11px !important;
    box-sizing: border-box;
    background: transparent !important;
    border: 2px solid var(--primary-color);
    opacity: 1 !important;
    margin: 0 3px !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

.swiper-button-next,
.swiper-button-prev {
    right: auto !important;
    left: auto !important;
    position: relative !important;
    color: var(--primary-color) !important;
    margin-top: 0 !important;
    width: 16px !important;
    height: 18px !important;
    align-self: center;
    top: auto !important;
    -webkit-tap-highlight-color: transparent;
}

.swiper-button-next:active,
.swiper-button-prev:active {
    color: var(--primary-dark-color) !important;
}

.swiper-button-next {
    margin-left: 11px;
}

.swiper-button-prev {
    margin-right: 11px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: 900;
}

.swiper {
    width: 100%;
    height: 307px;
    margin-top: 27px;
}

.swiper-slide {
    font-size: 18px;
    background: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.event {
    border-radius: 23px;
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 1px var(--grey-border-color) solid;
    height: 100%;
    color: var(--white-color);
}

.event .event-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 23px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-sizing: border-box;
    border: 1px var(--white-color) solid;
}

.event .content-wrapper {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
    border-radius: 23px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event .form,
.event .title,
.event .date-info {
    margin-left: 18px;
    margin-right: 18px;
}

.event .form {
    margin-top: 20px;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0px 1.5px 1px rgba(0, 0, 0, 0.3);
}

.event .title {
    margin-top: 15px;
    font-weight: 800;
    font-size: 22px;
    line-height: 27px;
    color: var(--white-color);
    text-shadow: 0px 1.5px 1px rgba(0, 0, 0, 0.3);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event .date-info {
    margin-top: 15px;
    margin-bottom: auto;
    display: flex;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: var(--white-color);
    text-shadow: 0px 1.5px 1px rgba(0, 0, 0, 0.3);
}

.event .date-info>div {
    display: flex;
    align-items: center;
    margin-right: 16px;
}

.event .date-info>div>img {
    margin-right: 8px;
}

.event .place-info {
    margin-top: 12px;
    border-bottom-left-radius: 23px;
    border-bottom-right-radius: 23px;
    display: flex;
    align-items: center;
    padding: 17px 18px;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    text-shadow: 0px 1.5px 1px rgba(0, 0, 0, 0.3);
}

.event .place-info img {
    margin-right: 8px;
}

.event .pushka-card {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white-color);
    background-repeat: no-repeat;
    background-position-y: 6px;
    background-position-x: -1px;
    background-size: 36px;
    position: absolute;
    top: 12px;
    right: 12px;
}

.event .event-bg.skeleton {
    display: none;
}

.event .content-wrapper.skeleton {
    background: none;
    backdrop-filter: none;
}

.event .form.skeleton {
    min-height: 20px;
    border-radius: 8px;
}

.event .title.skeleton {
    min-height: 54px;
    border-radius: 8px;
}

.event .date-info.skeleton {
    min-height: 20px;
    border-radius: 8px;
}

.event .date-info.skeleton img {
    display: none;
}

.event .place-info.skeleton {
    min-height: 55px;
    box-sizing: border-box;
}

.event .place-info.skeleton img {
    display: none;
}

.skeleton {
    background-color: var(--grey-border-color);
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    background-size: 40px 100%;
    background-repeat: no-repeat;
    background-position: left -40px top 0;
    animation: shine 1s ease infinite;
}

@-webkit-keyframes shine {
    to {
        background-position: right -40px top 0;
    }
}

@keyframes shine {
    to {
        background-position: right -40px top 0;
    }
}

.event-icon.place-mark {
    width: 16px;
    height: 20.36px;
}

.load-error,
.events-counts-load-error {
    width: 100%;
    position: fixed;
    z-index: 10;
    justify-content: center;
    display: none;
    bottom: 235px;
}

.load-error>div,
.events-counts-load-error>div {
    position: absolute;
    bottom: -500px;
    border-radius: 23px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 32px 32px;
    font-size: 22px;
    max-width: 800px;
    text-align: center;
    opacity: 0;
    transform: scale(0.5);
    transition: bottom 0.3s ease-in-out,
        opacity 0.2s ease-in-out,
        transform 0.4ms ease-in-out;
}

.load-error>div.active,
.events-counts-load-error>div.active {
    opacity: 1;
    transform: scale(1);
    bottom: 0;
}

.animate-appearance {
    animation-duration: 0.75s;
    animation-name: fadeInFromRight;
    animation-timing-function: cubic-bezier(0.26, 0.53, 0.74, 1.48);
    animation-fill-mode: backwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

@keyframes fadeInFromRight {
    0% {
        opacity: 0;
        transform: translate(10px, 0);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

#main-page .events.empty {
    position: absolute;
    width: 100%;
    bottom: calc(50% - 38px);
    left: 0;
    text-align: center;
    color: var(--primary-body-color);
}

#main-page .projects-container {
    width: 996px;
    height: 412px;
    border-radius: 36px;
    background-color: var(--white-color);
    margin-top: 25px;
    position: relative;
}

.projects-container .projects-nav {
    display: flex;
    position: absolute;
    right: 22px;
    top: 22px;
    background: var(--white-color);
    box-shadow: 0px 4px 10px -2px rgba(0, 0, 0, 0.15);
    border-radius: 17px;
    z-index: 10;
    padding: 8px 11px;
}

.projects-swiper {
    width: 100%;
    height: 100%;
    margin-top: 0;
}

.projects-swiper .swiper-slide,
.projects-swiper .swiper-slide img {
    border-radius: 36px;
}

.projects-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    display: flex;
}

.fade-in-appearance {
    animation-duration: 0.75s;
    animation-name: fadeIn;
    animation-timing-function: cubic-bezier(0.26, 0.53, 0.74, 1.48);
    animation-fill-mode: backwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#popup-event .popup-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#popup-event .event-info {
    padding-top: 60px;
    display: flex;
}

#popup-event .event-info>div:last-child {
    margin-left: 21px;
}

#popup-event .event-preview {
    min-width: 149px;
    height: 149px;
    border-radius: 21px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#popup-event .event-form {
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
}

#popup-event .event-title {
    margin-top: 7px;
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    color: var(--primary-color);
}

#popup-event .event-date-info {
    display: flex;
    align-items: center;
    margin-top: 9px;
}

#popup-event .event-date-info img {
    margin-right: 10px;
}

#popup-event .event-date-info>div {
    margin-right: 15px;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
}

#popup-event .event-address {
    margin-top: 9px;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    display: flex;
    align-items: flex-start;
}

#popup-event .event-address img {
    margin: 6px 10px 0 2px;
}

#popup-event .event-desc {
    overflow: scroll;
    font-size: 22px;
    line-height: 27px;
    margin: 32px 0;
    flex: 1;
    -webkit-line-clamp: 13;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

#popup-event .event-qr-code {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#popup-event .event-qr-code>img {
    width: 394px;
    margin: 32px auto 0 auto;
}

#popup-event .event-qr-code>p {
    margin: 50px auto 63px auto;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
}

/* START OF Libraries */
#libs-page .wrap-pull,
#affiche-page,
#affiche-page .wrap-pull,
#vv-page .wrap-pull,
#additional-page {
    background-color: var(--primary-color);
}

header {
    padding: 0 64px;
    color: var(--white-color);
}

header>.cbs {
    padding-top: 25px;
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    opacity: 0.45;
}

header>.title {
    padding: 98px 0;
    font-weight: 700;
    font-size: 100px;
    line-height: 102px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

section {
    border-top-left-radius: 65px;
    border-top-right-radius: 65px;
    background-color: var(--white-color);
    padding: 64px 64px 269px 64px;
    min-height: calc(100% - 357px);
    box-sizing: border-box;
    position: relative;
}

/* filters */
.filter-wrap {
    display: flex;
    padding: 12px 27px;
}

.filter-wrap.disabled .filter-value {
    color: var(--primary-filter-disabled-color);
}

.filter-wrap.disabled .filter-select {
    border: 2px solid var(--primary-filter-disabled-color);
}

.filter-select {
    min-width: 24px;
    height: 24px;
    position: relative;
    border: 2px solid var(--primary-color);
    border-radius: 7px;
    margin-right: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease-in-out;
}

.filter-select>img {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.filter-wrap.active .filter-select {
    background-color: var(--primary-color);
}

.filter-wrap.active .filter-select>img {
    opacity: 1;
}

.filter-value {
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    color: var(--primary-color);
}

.filter-apply {
    background-color: var(--primary-color);
    color: white;
    margin: 17px 23px 0 23px;
    border-radius: 9px;
    text-align: center;
    font-weight: 500;
    font-size: 22px;
    line-height: 27px;
    padding: 15px 0;
    box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.filter-apply.disabled {
    opacity: 0.3;
}

.filter-apply:not(.disabled):hover,
.filter-apply:not(.disabled):active {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    background-color: var(--primary-dark-color);
    transition: box-shadow 0.3s ease-in-out,
        background-color 0.4s ease-in-out;
}

.filter-values {
    height: 0;
    padding: 0;
    overflow: hidden;
    max-height: 1100px;
    display: flex;
    flex-direction: column;
    transition: height 0.3 ease-in-out,
        border-top 0.3s ease-in-out,
        padding 0.3s ease-in-out;
}

.filter-values>div:first-child {
    overflow-y: scroll;
}

.filter-container.active .filter-values {
    height: auto;
    padding: 11px 0 26px 0;
    border-top: 2px var(--primary-border-color) solid;
    transition: height 0.3 ease-in-out,
        border-top 0.3s ease-in-out,
        padding 0.3s ease-in-out;
}

.filter-container {
    background-color: var(--primary-bg-color);
    border-color: var(--primary-border-color);
    border-style: solid;
    border-width: 2px;
    border-radius: 18px;
    transition: border-bottom-color 0.3s ease-in-out,
        border-bottom-left-radius 0.3s ease-in-out,
        border-bottom-right-radius 0.3s ease-in-out,
        box-shadow 0.3s ease-in-out;
}

.filter-container.active {
    box-shadow: 0px 28px 120px rgba(0, 0, 0, 0.5);
    z-index: 20;
    transition: border-bottom-width 0.3s ease-in-out,
        border-bottom-left-radius 0.3s ease-in-out,
        border-bottom-right-radius 0.3s ease-in-out,
        box-shadow 0.3s ease-in-out;
}

.filter-container.active .filter-current-wrap>svg {
    transform: rotate(90deg);
    transition: transform 0.3s ease-in-out;
}

.filter-current-wrap {
    font-weight: 400;
    font-size: 22px;
    line-height: 27px;
    color: var(--primary-color);
    display: flex;
    padding: 15px 27px;
    align-items: center;
}

.filter-current-wrap>svg {
    height: 100%;
    transition: transform 0.3s ease-in-out;
}

.filter-current-wrap>svg path {
    fill: var(--primary-color);
}

.filter-current-wrap>div {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-right: 10px;
}

.filter-current {
    font-weight: 600;
}

.filter-parent {
    position: relative;
    height: 137px;
    margin-bottom: 38px;
}

.filter-container.dists,
.filter-container.books,
.filter-container.services,
.filter-container.schedules,
.filter-container.forms,
.filter-container.libraries,
.filter-container.dates,
.filter-container.ages,
.filter-container.accesses {
    position: absolute;
    top: 0;
    left: 0;
    width: 468.5px;
    box-sizing: border-box;
}

.filter-container.services,
.filter-container.books,
.filter-container.libraries {
    left: 483.5px;
}

.filter-container.books,
.filter-container.schedules,
.filter-container.dates,
.filter-container.ages,
.filter-container.accesses {
    top: 76px;
}

.filter-container.dates,
.filter-container.ages,
.filter-container.accesses {
    width: 307.33px;
}

.filter-container.ages {
    left: 322.33px;
}

.filter-container.accesses {
    left: 644.66px;
}

/* library */
#libs-page .item-wrap {
    width: 307px;
    height: 307px;
    position: relative;
    border-radius: 24px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    transition: box-shadow 0.3s ease-in-out;
}

#libs-page .item-wrap:hover,
#libs-page .item-wrap:active {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

#libs-page .item-wrap .item-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background-position: center;
}

#libs-page .item-wrap .dark-bg {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background-color: rgba(0, 0, 0, 0.5);
}

#libs-page .item-wrap .dark-bg.nurguhun,
#libs-page .item-wrap .dark-bg.sardaana {
    display: block;
}

#libs-page .item-wrap .item {
    border-radius: 23px;
}

#libs-page .item-wrap .item {
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    width: 100%;
    height: 100%;
    z-index: 10;
    position: relative;
}

#libs-page .item-wrap .item.skeleton {
    border: 2px var(--grey-border-color) solid;
    background-color: var(--white-color);
}

#libs-page .item-wrap .content-wrap {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}

#libs-page .item-wrap .item.skeleton .content-wrap {
    width: 100%;
}

#libs-page .item-wrap .logo {
    width: 111px;
    margin-top: 27px;
    margin-bottom: 29px;
}

#libs-page .item-wrap .item .title,
#libs-page .item-wrap .item .info {
    text-shadow: 0px 1.5px 1px rgba(0, 0, 0, 0.3);
}

#libs-page .item-wrap .item .title.skeleton {
    border-radius: 8px;
    background-color: var(--grey-border-color);
}

#libs-page .item-wrap .title {
    font-size: 22px;
    line-height: 27px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px;
    min-height: 71px;
    max-height: 81px;
}

#libs-page .item-wrap .info-wrap {
    display: flex;
}

#libs-page .item-wrap .item.skeleton .info-wrap img {
    display: none;
}

#libs-page .item-wrap .item .info-wrap:first-child {
    margin-bottom: 7px;
}

#libs-page .item-wrap .info {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
}

#libs-page .item-wrap .item.skeleton .info.skeleton {
    width: 100%;
    min-height: 20px;
    border-radius: 8px;
    background-color: var(--grey-border-color);
}

#libs-page .item-wrap .icon.place-mark {
    width: 16px;
    height: 20.36px;
}

#libs-page .item-wrap .icon {
    margin-right: 8px;
}

.list-move,
.list-enter-active,
.list-leave-active {
    transition: all 0.5s ease;
}

.list-enter-from,
.list-leave-to {
    opacity: 0;
    transform: translateY(10px);
}

.list-leave-active {
    position: absolute;
}

.move-up-appearance {
    animation-duration: 0.75s;
    animation-name: moveUpAppearance;
    animation-timing-function: cubic-bezier(0.26, 0.53, 0.74, 1.48);
    animation-fill-mode: backwards;
}

@keyframes moveUpAppearance {
    0% {
        opacity: 0;
        transform: translate(0, 10px);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/* library modal */
.popup .lib-top-panel {
    height: 135px;
    border-top-left-radius: 65px;
    border-top-right-radius: 65px;
}

.popup .lib-title {
    margin-top: 106px;
    margin-bottom: 38px;
    font-weight: 700;
    font-size: 44px;
    line-height: 54px;
    text-transform: uppercase;
}

.popup .lib-contacts-wrap {
    margin-bottom: 31px;
}

.popup .lib-item {
    display: inline-flex;
    align-items: center;
    margin-right: 36px;
    min-height: 58.5px;
    margin-bottom: 20px;
}

.popup .lib-item>svg {
    margin-right: 10px;
}

.popup .lib-item>svg path {
    fill: var(--primary-color);
}

.popup .lib-contact-wrap {
    display: inline-block;
    padding: 13px 15px;
    background-color: var(--primary-bg-color);
    border: 2px var(--primary-border-color) solid;
    box-sizing: border-box;
    border-radius: 14px;
}

.popup .lib-contact-wrap.empty {
    background-color: transparent !important;
    border-color: transparent !important;
    padding-left: 0;
    padding-right: 0;
}

.popup .lib-icon {
    height: 42px;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px;
}

.popup .lib-icon.telephone {
    width: 32px;
}

.popup .lib-icon.vk {
    width: 42px;
}

.popup .lib-icon.yt {
    width: 36px;
}

.popup .lib-icon.email {
    width: 38px;
}

.popup .lib-icon.tg {
    width: 40px;
}

.popup .lib-contact {
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    display: inline-flex;
    flex-direction: row;
    color: var(--primary-color);
    align-items: center;
}

.lib-contact>svg {
    margin-right: 11px;
}

.lib-contact>svg path {
    fill: var(--primary-color);
}

.popup .lib-schedule {
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    display: inline-block;
    margin-right: 49px;
    margin-bottom: 19px;
}

.popup .lib-logo {
    position: absolute;
    left: 58px;
    top: 68px;
    height: 158px;
}

.popup .lib-logo>div {
    width: 158px;
    height: 158px;
    border-radius: 50%;
    background-color: white;
}

.popup .lib-logo>img {
    width: 148px;
    height: 148px;
    position: absolute;
    left: 5px;
    top: 5px;
}

.result-empty {
    color: var(--primary-body-color);
    text-align: center;
    padding-top: 38px;
    font-size: 22px;
}

.filter-loading {
    position: absolute;
    bottom: 0;
    top: 234px;
    width: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    z-index: 10;
    justify-content: center;
}

.filter-loading>div {
    width: 110px;
    height: 110px;
    background-size: 110px auto;
    animation: rotation 0.8s linear infinite;
    position: absolute;
    top: 513px;
}

.filter-loading>div svg path {
    fill: var(--primary-color);
}

/* END OF Libraries */

/* START OF Affiche section */
#affiche-page .event {
    width: 305.33px;
    height: 307px;
    position: relative;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
}

#affiche-page .event:active {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}

.filter-container.active #dates.filter-values {
    padding-top: 0;
}

#dates .filter-wrap {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 2px var(--primary-border-color) solid;
}

.filter-container.dates.active {
    width: 513px;
}

.calendar {
    overflow-x: hidden;
}

.calendar .nav {
    display: flex;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    color: var(--primary-color);
    padding: 15px 27px 17px 27px;
    align-items: center;
}

.calendar .nav span {
    flex: 1;
}

.calendar .nav .arrows {
    display: flex;
}

.calendar .nav .arrows>div {
    padding: 10px 15px;
    border: 2px var(--primary-border-color) solid;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    display: flex;
    transition: background-color 0.3s ease-in-out,
        opacity 0.2s ease-in-out;
}

.calendar .nav .arrows>div:active {
    background: var(--primary-border-color);
}

.calendar .nav .arrows>div.disabled {
    opacity: 0.5;
}

.calendar .nav .arrows>div:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-left: -2px;
}

.calendar .nav .arrows svg path {
    fill: var(--primary-color);
}

.calendar .nav .arrows svg.left-arrow {
    transform: rotate(180deg);
}

.calendar .weekdays {
    display: flex;
    width: 453px;
    padding: 0 27px 8px 27px;
    justify-content: space-between;
}

.calendar .weekday {
    width: 59px;
    font-weight: 500;
    font-size: 22px;
    line-height: 27px;
    text-align: center;
    color: var(--primary-color);
    opacity: 0.5;
}

.calendar .month {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 7px;
    padding: 0 27px;
    position: relative;
}

.calendar .month>div {
    font-weight: 700;
    font-size: 22px;
    line-height: 27px;
    text-align: center;
    padding: 15px 0;
    border: 3px transparent solid;
    border-radius: 9px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 59px;
    box-sizing: border-box;
    position: relative;
    transition: background-color 0.3s ease-in-out,
        border-color 0.3s ease-in-out,
        color 0.3s ease-in-out;
}

.calendar .month>div.active {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--white-color);
}

.calendar .month>div.active .events-counts-exist {
    background-color: var(--white-color);
}

.calendar .month>div.other-month {
    border-color: transparent;
    opacity: 0.5;
    font-weight: 500;
}

.calendar .month>div.old-day {
    border-color: transparent;
    opacity: 0.5;
}

.calendar .month>div.current {
    border-color: var(--primary-color);
}

.fade-in-from-left-leave-active,
.fade-in-from-right-enter-active {
    animation-duration: 0.3s;
    animation-name: fadeInFromRight;
    animation-fill-mode: backwards;
}

.fade-in-from-left-enter-active,
.fade-in-from-right-leave-active {
    animation-duration: 0.3s;
    animation-name: fadeInToRight;
    animation-fill-mode: backwards;
}

.fade-in-from-left-leave-active,
.fade-in-from-left-enter-active {
    animation-direction: reverse;
}

@keyframes fadeInToRight {
    0% {
        opacity: 1;
        transform: translate(0, 0);
    }

    100% {
        opacity: 0;
        transform: translate(-10px, 0);
    }
}

.events-counts-exist,
.events-counts-loading {
    width: 12px;
    height: 12px;
    position: absolute;
    top: 3px;
    right: 3px;
}

.events-counts-loading svg {
    animation: rotation 0.8s linear infinite;
}

.events-counts-loading svg path {
    fill: var(--primary-color);
}

.events-counts-exist {
    background-color: var(--primary-color);
    background-image: none;
    border-radius: 50%;
    animation: none;
    transition: background-color 0.3s ease-in-out;
}

.btn-to-top {
    position: fixed;
    bottom: 227px;
    right: 20px;
    width: 120px;
    height: 120px;
    background-color: var(--white-color);
    border-radius: 50%;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
    transition: transform 0.3s ease,
        background-color 0.3s ease;
    align-items: center;
    justify-content: center;
}

.btn-to-top path {
    transition: fill 0.3s ease;
}

.btn-to-top:active {
    background-color: var(--primary-bg-color);
}

.btn-to-top:active path {
    fill: var(--primary-color);
}

.loading-next-events {
    display: flex;
    justify-content: center;
    padding-top: 26px;
    transition: transform 0.3s ease;
}

.loading-next-events>div {
    background: url('/local/img/loading-green.png') no-repeat 0 0;
    width: 70px;
    height: 70px;
    background-size: 70px auto;
    animation: rotation 0.8s linear infinite;
}

/* END OF Affiche section */

/* START OF Virtual exhibitions section */
#vv-page .event {
    width: 468.5px;
    height: 291px;
    position: relative;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
}

#vv-page .event:active {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}

#vv-page .event .event-bg {
    border: 0;
}

#vv-page .event .content-wrapper {
    background: rgba(22, 22, 22, 0.5);
    backdrop-filter: blur(25px);
    margin-top: auto;
    height: auto;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    flex-direction: row;
}

#vv-page .event .content-wrapper.skeleton {
    background: none;
}

#vv-page .event .content-wrapper>div:last-child {
    flex: 1;
}

#vv-page .event .place-info {
    width: 23px;
    margin-top: 0;
    margin-right: 15px;
    padding: 0;
    border-bottom-right-radius: 0;
}

#vv-page .event .form {
    margin-top: 13px;
    margin-left: 0;
}

#vv-page .event .title {
    margin-top: 8px;
    margin-bottom: 8px;
    margin-left: 0;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#vv-page .author-info {
    display: flex;
    align-items: center;
    margin-bottom: 13px;
    margin-right: 18px;
}

#vv-page .author-info img {
    margin-right: 8px;
}

#vv-page #popup-event .event-preview {
    min-width: 200px;
    height: 124.28px;
}

#vv-page .filter-container.libraries {
    left: 0;
}

#vv-page .filter-container.ages {
    width: 468.5px;
    left: 483.5px;
    top: 0;
}

#vv-page .filter-parent {
    height: 61px;
}

#vv-page .content-wrapper.skeleton>div:last-child {
    margin-left: -20px;
}

#vv-page .content-wrapper.skeleton .author-info img {
    display: none;
}

#vv-page .author-info.skeleton {
    min-height: 20px;
    border-radius: 8px;
}

#vv-page .filter-loading {
    top: 158px;
}

/* END OF Virtual exhibitions section */

/* START OF Additional page of main projects */
#additional-page .nav-panel {
    display: flex;
    background-color: var(--white-color);
    border-radius: 18px;
    font-size: 22px;
    line-height: 27px;
    color: var(--primary-color);
}

#additional-page .nav-panel>div {
    width: 50%;
    padding: 15px 26px;
    border: 2px solid var(--primary-border-color);
    transition: all 0.3s ease;
}

#additional-page .nav-panel>div.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    font-weight: 700;
}

#additional-page .nav-seu {
    border-radius: 18px 0 0 18px;
}

#additional-page .nav-echb {
    border-radius: 0 18px 18px 0;
}

.slide-fade-from-right-enter-from,
.slide-fade-from-left-leave-to {
    transform: translateX(50px);
    opacity: 0;
}

.slide-fade-from-left-enter-from,
.slide-fade-from-right-leave-to {
    transform: translateX(-50px);
    opacity: 0;
}

.slide-fade-from-right-enter-to,
.slide-fade-from-right-leave-from,
.slide-fade-from-left-enter-to,
.slide-fade-from-left-leave-from {
    transform: translateX(0);
    opacity: 1;
}

.slide-fade-from-left-enter-active,
.slide-fade-from-left-leave-active,
.slide-fade-from-right-enter-active,
.slide-fade-from-right-leave-active {
    transition: all 0.3s ease-out;
}

.project-page {
    color: var(--primary-body-color);
    padding-top: 58px;
}

.project-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 44px;
    line-height: 57px;
    text-transform: uppercase;
}

.project-desc {
    padding-top: 44px;
    padding-bottom: 58px;
    position: relative;
}

.project-desc .basic-desc {
    font-size: 22px;
    line-height: 27px;
    max-width: 537px;
}

.project-desc .basic-desc:first-child {
    max-width: 640px;
}

.project-desc .basic-desc.project-points {
    padding: 32px 0;
    display: flex;
    flex-direction: column;
}

.project-desc .basic-desc.project-points b {
    color: var(--primary-color);
}

.project-desc .basic-desc .project-point {
    padding-bottom: 25px;
    display: flex;
}

.project-desc .basic-desc .project-point:last-child {
    padding-bottom: 0;
}

.project-desc .basic-desc .project-point svg {
    min-width: 27px;
    margin-right: 18px;
}

.project-page svg path {
    fill: var(--primary-color);
}

.project-seu-main-img {
    position: absolute;
    bottom: -4px;
    right: -64px;
}

section.seu-libraries {
    background-color: var(--primary-bg-color);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 65px;
    border-bottom-right-radius: 65px;
    padding: 65px 64px;
    min-height: auto;
    margin: 0 -64px;
    z-index: 1;
}

section.seu-libraries>div:last-child {
    padding-top: 58px;
}

.hidden {
    height: 0;
    overflow: hidden;
}

.seu-lib {
    display: flex;
    border-radius: 24px;
    background-color: var(--white-color);
    margin-bottom: 20px;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

.seu-lib:active .name {
    background-color: var(--primary-bg-color);
}

.seu-lib:last-child {
    margin-bottom: 0;
}

.seu-lib>div:last-child {
    width: 100%;
}

.seu-lib-color {
    min-width: 24px;
    border-radius: 24px 0 0 24px;
}

.seu-lib .name,
.echb .question .name {
    padding: 41px 32px;
    font-weight: 700;
    font-size: 22px;
    line-height: 27px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.seu-lib .name>span,
.echb .question .name>span {
    flex: 1;
    color: var(--primary-color);
}

.seu-lib .name>svg,
.echb .question .name>svg {
    transition: transform 0.3s ease;
}

.seu-lib .name>svg path,
.echb .question .name>svg path {
    fill: var(--primary-color);
}

.seu-lib .name>svg.active,
.echb .question .name>svg.active {
    transform: rotate(90deg);
}

.seu-info,
.echb .question .answer {
    font-size: 22px;
    line-height: 27px;
    padding: 32px;
    border-top: 2px var(--primary-border-color) solid;
}

.seu-info p {
    margin-top: 0;
    margin-bottom: 28px;
}

.seu-info img {
    width: 100%;
    background-color: var(--yellow-light-color);
    padding: 12px;
    box-sizing: border-box;
    border-radius: 10px;
    border: 2px var(--yellow-color) solid;
}

section.footer {
    background-color: var(--primary-color);
    margin: -64px -64px -62px -64px;
    border-radius: 0;
    padding: 136px 64px 72px;
    min-height: auto;
    color: var(--white-color);
    font-weight: 600;
    text-align: center;
}

section.footer p {
    font-size: 22px;
    line-height: 27px;
    margin: 0;
}

section.footer p:first-of-type {
    text-transform: uppercase;
    padding: 24px 0 15px 0;
}

section.footer p:last-child {
    font-weight: 700;
}

.echb {
    font-size: 22px;
    line-height: 27px;
}

.echb .project-desc {
    padding-top: 69px;
    padding-bottom: 89px;
}

.echb .project-point {
    border-radius: 55px;
    background-color: var(--primary-bg-color);
    padding: 30px 56px;
    display: flex;
    align-items: center;
}

.echb .project-point:first-of-type {
    margin-bottom: 23px;
}

.echb .project-point div:first-of-type {
    min-width: 72px;
}

.echb .project-point div>p {
    font-size: 22px;
    line-height: 27px;
    margin: 0;
}

.echb .project-point div>p b {
    color: var(--primary-color);
}

.echb .project-point div>p:first-of-type {
    padding-bottom: 12px;
}

.echb .content {
    padding-top: 46px;
}

.echb .comment {
    display: flex;
    align-items: center;
}

.echb .comment svg {
    min-width: 35px;
    margin-right: 24px;
}

.echb .auth-section {
    margin-top: 48px;
    background-color: var(--white-color);
    border-radius: 65px;
    padding: 30px 112px;
    display: flex;
    align-items: center;
}

.echb .auth-section>div {
    flex: 1;
}

.echb .auth-section .lk-point {
    display: flex;
    align-items: center;
}

.echb .auth-section .lk-point:first-of-type {
    margin-bottom: 60px;
}

.echb .auth-section .lk-point svg {
    min-width: 116px;
    margin-right: 38px;
}

.echb .auth-section .lk-point svg circle {
    fill: var(--primary-color);
}

.echb .auth-section .lk-point svg path {
    fill: var(--white-color) !important;
}

.echb .auth-section .lk-point.password svg path {
    fill: var(--primary-color) !important;
}

.echb .auth-section .lk-point p {
    margin: 0;
    padding-bottom: 10px;
}

.echb .auth-section .lk-point p:last-of-type {
    padding-bottom: 0;
}

.echb .auth-section .lk-point b {
    text-transform: uppercase;
    color: var(--primary-color);
}

.echb .auth-section.echb-card {
    padding: 46px 44px 34px;
    flex-direction: column;
    align-items: unset;
}

.echb .auth-section.echb-card>p {
    color: var(--primary-color);
    text-transform: uppercase;
    margin: 0;
    padding-bottom: 47px;
    font-weight: 700;
    text-align: center;
}

.echb .auth-section.echb-card>p:first-of-type {
    font-size: 28px;
}

.echb .auth-section.echb-card>div {
    display: flex;
}

.echb .auth-section.echb-card>div>img {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    margin-right: 25px;
    border-radius: 10px;
}

.echb .auth-section.echb-card .lk-point {
    align-items: unset;
}

.echb .auth-section.echb-card .lk-point:first-of-type {
    margin-bottom: 22px;
    margin-top: 7px;
}

.echb .auth-section.echb-card .lk-point>div:first-of-type {
    min-width: 7px;
    min-height: 100%;
    background-color: var(--primary-color);
    margin-right: 11px;
}

.echb .auth-section.echb-card .lk-point p {
    padding-bottom: 2px;
}

.echb .auth-section.echb-card>p:last-of-type {
    margin: 0;
    color: var(--primary-body-color);
    text-transform: none;
    font-weight: 400;
    padding-bottom: 0;
    opacity: 0.7;
    padding-top: 20px;
    font-size: 16px;
}

.echb .about-auth {
    padding-top: 125px;
    padding-bottom: 100px;
    text-align: center;
}

.echb .about-auth>p {
    margin: 0;
}

.echb .about-auth>p:first-of-type {
    padding-top: 48px;
    padding-bottom: 28px;
}

.echb .about-auth>p:last-of-type {
    padding-top: 28px;
}

.echb .about-auth>img {
    width: 436px;
}

.echb .questions-section {
    background-color: var(--white-color);
    margin: 0 -64px -65px;
    padding: 0 64px;
    border-bottom-left-radius: 65px;
    border-bottom-right-radius: 65px;
}

.echb .questions-container {
    padding-top: 47px;
    padding-bottom: 79px;
}

.echb .question {
    border: 2px var(--primary-border-color) solid;
    background-color: var(--primary-bg-color);
    border-radius: 24px;
    margin-bottom: 20px;
}

.echb .question:last-of-type {
    margin-bottom: 0;
}

#libs-page a {
    text-decoration: none;
}

.link-to-section {
    border-radius: 14px;
    background-color: var(--primary-bg-color);
    border: 2px var(--primary-border-color) solid;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    padding: 40px;
    display: flex;
    align-items: center;
}

.link-to-section path {
    fill: var(--primary-color);
}

#belinka .link-to-section path {
    fill: var(--f1-primary-color);
}

#book03 .link-to-section path {
    fill: var(--f5-primary-color);
}

#panaeva .link-to-section path {
    fill: var(--f9-primary-color);
}

#libs-page .link-to-section-parent {
    display: block;
    margin-top: 66px;
    margin-bottom: 16px;
}

#libs-page .link-to-section-parent.last {
    margin-top: 0;
    margin-bottom: 0;
}

.link-to-section span {
    flex: 1;
}

@media (min-width: 2000px) {
    #application>div {
        padding: 10rem 20rem 0;
        background-color: var(--primary-color);
    }

    .nav-menu {
        /* margin: 0 86rem 2rem; */
        border-radius: 39px;
        border: 2px #D7D7D7 solid;
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
        flex-direction: column;
        left: auto;
        right: 2rem;
        bottom: calc(50% - 533px);
        padding: 66px 50px;
        height: 930px;
    }

    section {
        padding-bottom: 0;
        padding-left: 114px;
        padding-right: 114px;
        padding-top: 114px;
    }

    section.seu-libraries {
        padding: 118px 114px;
        margin: 0 -114px;
    }

    section.footer {
        margin-left: -114px;
        margin-right: -114px;
    }

}
/* End */
/* /local/templates/vue_info_terminal/template_styles.css?169926193350033 */
