

/* Start:/local/templates/lit_clinic/components/bitrix/system.pagenavigation/.default/style.css?17441819991545*/
.pagination{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4.8rem;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: .1rem solid var(--color-gray-40);
}

.pagination__nav{
    display: flex;
    align-items: flex-end;
    gap: .8rem;
    color: var(--color-gray-140);
    line-height: 1;
}

.pagination__icon{
    width: 2rem;
    height: 2rem;
    stroke: currentColor;
}

.pagination__icon._prev{
    transform: rotate(180deg);
}

.pagination__row{
    display: flex;
    align-items: center;
    gap: .2rem;
}

.pagination__item{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: var(--rounded-8);
    background: transparent;
    font-family: var(--ff-bold);
    font-size: var(--fz-14);
    transition: var(--transition-main);
}

.pagination__item._current,
.pagination__item:hover{
    background: var(--color-white);
    color: var(--color-blue-60);
}

@media screen and (max-width: 1024px){
    .pagination{
        gap: 1.6rem;
        flex-wrap: wrap;
    }
    .pagination__row{
        width: 100%;
        justify-content: center;
    }
    .pagination__item{
        width: 3rem;
        height: 3rem;
        border-radius: var(--rounded-4);
        font-size: var(--fz-12);
    }
    .pagination__nav:has(.pagination__icon._next){
        order: 3;
    }
    .pagination__nav:has(.pagination__icon._prev){
        order: 2;
    }
}
/* End */


/* Start:/local/templates/lit_clinic/components/bitrix/news/services/bitrix/news.list/diagnostics-list/style.css?17781587605324*/
.catalog{
    position: relative;
    padding: 3.2rem;
    border-radius: 0 var(--rounded-12) var(--rounded-12) var(--rounded-12);
    background: var(--color-white);
}

.catalog__section{
    column-count: 4;
    column-gap: 3.2rem;
}

.catalog__section[data-content]{
    display: none;
}

.catalog__section._active[data-content]{
    display: block;
}

.catalog__block{
    display: flex;
    margin-bottom: 2.4rem;
    break-inside: avoid;
}

.catalog__item{
    display: flex;
    flex-direction: column;
    gap: .8rem;
    padding-left: 2rem;
    margin-left: 2rem;
    border-left: .1rem solid var(--color-gray-80);
}

.catalog__letter{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    min-width: 2.4rem;
    height: 2.4rem;
    background: var(--color-gray-20);
    border-radius: var(--rounded-8);
    font-size: var(--fz-12);
    font-family: var(--ff-bold);
    color: var(--color-blue-60);
}

.catalog__link{
    transition: var(--transition-main);
    cursor: pointer;
}

.catalog__link._hidden{
    display: none;
}

.catalog__link._blue{
    color: var(--color-blue-60);
}

.catalog-tab{
    display: flex;
}

.catalog-tab__group{
    display: flex;
    align-items: center;
    gap: 3.2rem;
    margin-left: auto;
}

.link-clinic{
    display: flex;
    align-items: center;
    gap: .8rem;
}

.link-clinic__img{
    width: 2.4rem;
    min-width: 2.4rem;
    height: 2.4rem;
}

.catalog__title{
    position: relative;
    color: var(--color-blue-60);
    background: var(--color-gray-230);
    border: .1rem solid var(--color-gray-210);
    border-radius: var(--rounded-10) var(--rounded-10) 0 0;
    padding: 1.2rem 2.4rem;
    cursor: pointer;
    transition: var(--transition-main);
}

.catalog__title:before{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(247, 247, 252, 0) 0%, var(--color-gray-210) 100%);
    width: 100%;
    height: 1.6rem;
    transition: var(--transition-main);
}

.catalog__title._active{
    background: var(--color-white);
    border-bottom: transparent;
    box-shadow: 0 .8rem 1.6rem 0 var(--color-gray-200);
}

.catalog__title._active:before{
    opacity: 0;
}

.catalog__overlay {
    display: block;
    width: 100%;
}

.catalog__overlay-header {
    margin-bottom: 12px;
    display: flex;
    justify-content: flex-start;
}
.catalog__overlay-back {
    border: none;
    outline: none;
    background: var(--color-gray-20);
    padding: .8rem 1.2rem;
    border-radius: var(--rounded-8);
    color: var(--color-blue-60);
    cursor: pointer;
    transition: var(--transition-main);
}
.catalog__overlay-list {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    border-left: 1px solid var(--color-gray-80);
    padding-left: 2rem;
}

.catalog-search{
    position: relative;
    width: 100%;
}

.catalog-search__loup{
    position: absolute;
    top: 50%;
    left: 1.6rem;
    transform: translateY(-50%);
    width: 2.4rem;
    height: 2.4rem;
    fill: var(--color-blue-60);
}

.catalog-search__input{
    width: 100%;
    font-family: var(--ff-medium);
    border: .1rem solid var(--color-gray-200);
    border-radius: var(--rounded-48);
    padding: 1.6rem 1.6rem 1.6rem 4.8rem;
    background: var(--color-white);
    outline: none;
    transition: var(--transition-main);
}

.catalog-search__input:focus{
    outline: none;
    border-color: var(--color-blue-60);
}

.catalog-search__input::placeholder{
    font-family: var(--ff-medium);
    color: var(--color-gray-110);
}


@media (hover: hover) {
    .catalog__link._blue:hover{
        color: var(--color-orange);
    }
    .catalog__overlay-back:hover{
        color: var(--color-orange);
    }
}

@media screen and (max-width: 1250px){
    .catalog__title{
        padding: 1rem;
        font-size: var(--fz-14);
    }
    .catalog-tab__group{
        gap: 1.2rem;
    }
}

@media screen and (max-width: 1024px){
    .catalog {
        padding: 2rem;
        border-radius: var(--rounded-12);
    }

    .catalog__section {
        column-count: 2;
    }
    .catalog-tab{
        flex-wrap: wrap;
        gap: .8rem;
        padding-bottom: 1.6rem;
    }

    .catalog__title{
        background: transparent;
        border-radius: var(--rounded-32);
        padding: .8rem 1.6rem;
    }

    .catalog__title._active{
        background: var(--color-blue-60);
        color: var(--color-white);
        border-bottom: .1rem solid var(--color-gray-210);
        box-shadow: none;
    }

    .catalog__title:before{
        display: none;
    }

    .catalog-tab__group{
        display: none;
    }
}

@media screen and (max-width: 576px){
    .catalog__section {
        column-count: 1;
    }

    .catalog__letter{
        display: none;
    }

    .catalog__item{
        padding-left: 0;
        margin-left: 0;
        border-left: none;
    }

    .catalog__more-btn{
        width: 100%;
        background: transparent;
    }

    .catalog__block:last-child{
        margin-bottom: 0;
    }
}
/* End */


/* Start:/local/templates/lit_clinic/assets/css/components/common/_text-mob-short.css?17811893852306*/
.text-mob-short__content{
    position: relative;
    transition: var(--transition-main);
}

.text-mob-short__content ul li{
    position: relative;
    padding-left: 1.6rem;
}

.text-mob-short__content ul li:before{
    content: '';
    position: absolute;
    left: .6rem;
    top: .85rem;
    width: .3rem;
    height: .3rem;
    border-radius: var(--rounded-full);
    background: var(--color-font);
}

.text-mob-short__content img:not([class]){
    position: relative;
    width: 40%;
    height: auto;
    object-fit: contain;
    border-radius: var(--rounded-16);
    overflow: hidden;
    margin-bottom: 3rem;
    float: right;
    margin-left: 3rem;
}

.text-mob-short__content h2:not([class]),
.text-mob-short__content h3:not([class]),
.text-mob-short__content p:not([class]),
.text-mob-short__content ul:not([class]),
.text-mob-short__content ol:not([class]) {
    padding-bottom: 1.6rem;
}

.text-mob-short__content._hidden::before{
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 21rem;
    background: linear-gradient(180deg, rgba(233,242,255,0) 0%, var(--color-blue-170) 100%);
    opacity: 0;
    transition: opacity 350ms ease;
    pointer-events: none;
}


.text-mob-short__content._brown._hidden::before{
    background: linear-gradient(180deg, rgba(230, 229, 228, 0) 0%, var(--color-brown-90) 100%);
}

.text-mob-short__content._white._hidden::before{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--color-white) 100%);
    z-index: 1;
}

.text-mob-short__content._hidden::before{
    opacity: 1;
}

.text-mob-short__content._hidden{
    position: relative;
    overflow: hidden;
    transition: max-height 400ms ease;
    will-change: max-height;
    padding-bottom: 3.2rem;
}

.text-mob-short__content._hidden{
    max-height: 30rem;
}

[data-text-short="content"]:not(._hidden) + [data-text-short="btn"] .btn__icon {
    transform: scaleY(-1);
}

@media (prefers-reduced-motion: reduce){
    .text-mob-short__content{ transition: none; }
    .text-mob-short__content::before{ transition: none; }
}

@media screen and (max-width: 1023px){
    .text-mob-short__content img:not([class]) {
        width: 100%;
        margin-left: 0;
    }
}
/* End */


/* Start:/local/templates/lit_clinic/components/bitrix/news/services/bitrix/news.detail/.default/style.css?178222356510358*/
.reviews{
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.reviews__item{
    background: var(--color-white);
    padding: 2.4rem 2.4rem 3.6rem 2.4rem;
    border-radius: var(--rounded-24);
}

.reviews__top{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reviews__sources{
    width: auto;
    height: 1.6rem;
}

.reviews__item p{
    padding-bottom: 1.6rem;
}

.reviews__item a:not([class]){
    text-decoration: underline;
    color: var(--color-blue-60);
}

.reviews__item a:not([class]):hover{
    text-decoration-color: transparent;
}

.reviews__date{
    font-size: var(--fz-14);
    color: var(--color-gray-50);
}

.reviews__row{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviews__icon{
    width: 4.8rem;
    min-width: 4.8rem;
    height: 4.8rem;
}

.reviews__answer{
    padding: 2.4rem 0 0 3.2rem;
}

.accordion__item p:not(:last-child),
.accordion__item ul:not(:last-child),
.accordion__item ol:not(:last-child){
    margin-bottom: 1.6rem;
}

.reviews__show-more{
    position: relative;
    max-height: 9.1rem;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.reviews__show-more:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
    transition: var(--transition-main);
}
.reviews__show-more._show:before {
    background: transparent;
}

.clinic-benefits {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 3.2rem;
    gap: 1.6rem;
    border-radius: 2.4rem;
    background: linear-gradient(270deg, #0064FF 0%, #004EC8 100%);

}
.clinic-benefits::after {
    content: '';
    width: 100%;
    max-width: 30rem;
    height: 29.2rem;
    background: url("/local/templates/lit_clinic/components/bitrix/news/services/bitrix/news.detail/.default/img/benefits_ico_clinic.svg") center center/contain no-repeat;
}
.clinic-benefits__wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 51.2rem;
    width: 100%;
    height: 100%;
}
.clinic-benefits__h2 {
    color: #fff;
}
.clinic-benefits__descr {
    color: #fff;
}
.clinic-benefits__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}
.clinic-benefits__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    border-radius: 2.4rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}
.quote__text{
    position: relative;
    max-height: 9.1rem;
    overflow: hidden;
    padding-bottom: 1.6rem;
    transition: max-height 0.5s ease;
}

.quote__text:before{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(247, 247, 252, 0) 0%, #F7F7FC 100%);
    transition: var(--transition-main);
}

.quote__text._white:before{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
}

.quote__text._show:before{
    background: transparent;
}

@media (max-width: 768px) {
    .clinic-benefits {
        flex-direction: column;
        gap: unset;
        padding: 2rem;
    }
    .clinic-benefits__wrap {
        max-width: 100%;
        height: auto;
    }
    .clinic-benefits::after {
        display: none;
    }
}

.benefits{
    position: relative;
    padding: 3.2rem 29rem 3.2rem 3.2rem;
    background: linear-gradient(90deg, var(--color-blue-10) 0%, var(--color-blue-130) 100%);
    border-radius: var(--rounded-24);
}

.benefits:before{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 33rem;
    height: 47rem;
    background-image: url(/local/templates/lit_clinic/components/bitrix/news/services/bitrix/news.detail/.default/img/doctor_com.webp);
    -webkit-background-size: contain;
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
}

.benefits._woman:before{
    background-image: url(/local/templates/lit_clinic/components/bitrix/news/services/bitrix/news.detail/.default/img/doctor_woman.webp);
}

.benefits__wrap{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem 2.4rem;
}

.benefits__block{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: .8rem;
    padding: .8rem .2rem .8rem 3.2rem;
}

.benefits__block:before{
    content: '';
    position: absolute;
    top: .8rem;
    left: 0;
    width: 2.4rem;
    height: 2.4rem;
    background-image: url(/local/templates/lit_clinic/components/bitrix/news/services/bitrix/news.detail/.default/img/tick-circle.svg);
    -webkit-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
}


.benefits__title{
    position: relative;
    font-family: var(--ff-bold);
}


.benefits__desc{
    font-size: var(--fz-14);
    font-family: var(--ff-medium);
}

.bg-img{
    background-image: url(/local/templates/lit_clinic/components/bitrix/news/services/bitrix/news.detail/.default/img/doctor.webp)!important;
    -webkit-background-size: auto  100%!important;
    background-size: auto 100%!important;
    background-position: right center!important;
    background-repeat: no-repeat!important;
}

[data-section-items-list] .tag._hidden{
    display: none;
}

[data-section-items-toggle]{
    cursor: pointer;
    border: none;
    outline: none;
    font: inherit;
}


.procedure{
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    font-size: var(--fz-14);
}

.procedure__title{
    font-family: var(--ff-bold);
}

.procedure__text{
    margin-top: .4rem;
    font-family: var(--ff-medium);
}

.procedure-top{
    display: flex;
    gap: 2.4rem;
    padding-bottom: 2.4rem;
    margin-bottom: 2.4rem;
    border-bottom: .1rem solid var(--color-gray-200);
}

.procedure-info{
    display: flex;
    align-items: center;
    padding: 1.2rem 2rem;
    border-radius: var(--rounded-16);
    background: var(--color-gray-10);
    gap: 2.4rem;
}

.procedure-info__group{
    display: flex;
    gap: 4.8rem;
}

.procedure-info__item{
    position: relative;
}

.procedure-info__item:not(:last-child):before{
    content: '';
    position: absolute;
    right: -2.4rem;
    top: 50%;
    transform: translateY(-50%);
    width: .1rem;
    height: 3.2rem;
    background: var(--color-gray-200);
}

.procedure-info__title{
    margin-bottom: .4rem;
    font-size: var(--fz-14);
    font-family: var(--ff-medium);
}

.procedure-info__value{
    font-family: var(--ff-bold);
    font-size: var(--fz-18);
    color: var(--color-blue-60);
}

.procedure-top._brown .procedure-info__value{
    color: var(--color-brown-20);
}

.procedure-top__icon{
    color: var(--color-blue-60);
    width: 3.2rem;
    min-width: 3.2rem;
    height: 3.2rem;
}

.procedure-top._brown .procedure-top__icon{
    color: var(--color-brown-20);
}

.procedure-top__result{
    display: flex;
    align-items: center;
    gap: 2.4rem;
}


.quote-block{
    display: grid;
    grid-template-columns: 4.8rem 1fr 20rem;
    padding: 3.2rem 4.8rem;
    background: var(--color-blue-60);
    color: var(--color-white);
    border-radius: var(--rounded-16);
}

.quote-block__content{
    padding: 0 4.8rem 0 3.2rem;
}

.quote-block__icon{
    height: 4.8rem;
}

.quote-block__img{
    height: 20rem;
    border-radius: var(--rounded-16);
    overflow: hidden;
}

.quote-block__img img{
    object-position: top;
}

.quote-block__op{
    opacity: .6;
}

.quote-block__link{
    color: var(--color-white);
    text-decoration: underline;
    text-decoration-color: transparent;
}

.block-info__item.list-section{
    padding-right: 30rem;
}

.list-section{
    position: relative;
    overflow: hidden;
}

.list-section__img{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 33rem;
    height: 100%;
}

.list-section__img img{
    max-height: 40rem;
}

.list-section__img:after{
    content: '';
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(to right,  var(--color-white) 0, rgba(255, 255, 255, 0) 5em),
            linear-gradient(to bottom, var(--color-white) 0, rgba(255, 255, 255, 0) 5em),
            linear-gradient(to top,    var(--color-white) 0, rgba(255, 255, 255, 0) 5em);
    pointer-events: none;
}


@media (hover: hover) {
    .quote-block__link:hover{
        color: var(--color-white);
        text-decoration-color: var(--color-white);
    }
}

@media screen and (max-width: 1200px){
    .benefits:before{
        display: none;
    }
    .benefits{
        padding: 3.2rem;
    }
}
@media screen and (max-width: 1023px){
    .bg-img{
        background-image: url(/local/templates/lit_clinic/components/bitrix/news/services/bitrix/news.detail/.default/img/doctor_mob.webp)!important;
    }
    .procedure-info__group,
    .procedure-top{
        flex-direction: column;
    }

    .procedure-info .procedure-top__icon{
        display: none;
    }
    .procedure-info__group{
        gap: 3.2rem;
        width: 100%;
    }
    .procedure-info__item:not(:last-child):before{
        right: 0;
        top: auto;
        bottom: -1.6rem;
        transform: translateY(0);
        width: 100%;
        height: .1rem;
    }
    .quote-block{
        grid-template-columns: repeat(1, 1fr);
        padding: 2.4rem;
    }

    .quote-block__content{
        padding: 2.4rem 0;
    }

    .quote-block__icon{
        width: 4.8rem;
    }

    .quote-block__img{
        width: 10rem;
        height: 10rem;
    }

}
@media screen and (max-width: 768px){
    .benefits{
        padding: 2rem;
    }
    .benefits__wrap{
        grid-template-columns: repeat(1, 1fr);
        gap: 1.6rem;
    }
    .benefits__h2.h2{
        font-size: var(--fz-24);
    }

    .block-info__item.list-section{
        padding: 17.4rem 2.4rem 2.4rem 2.4rem;
    }

    .list-section .tag{
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .list-section__img{
        top: 0;
        transform: translate(0);
        right: 0;
        left: 0;
        width: 100%;
        height: 15.2rem;
    }

    .list-section__img:after{
        background-image:
                linear-gradient(to right,  var(--color-white) 0, rgba(255, 255, 255, 0) 5em);
    }
}
/* End */


/* Start:/local/templates/lit_clinic/assets/css/components/detail/_detail.css?17797156443648*/
.detail{
    display: grid;
    grid-template-columns: 1fr 32rem;
    gap: 2.4rem;
}

.detail._half{
    grid-template-columns: 1fr 56rem;
}

.detail__right{
    position: relative;
}

.detail__sticky{
    position: sticky;
    top: 16rem;
}

.detail__sticky._big{
    top: 20rem;
}

.detail__content{
    padding: 2.4rem;
    background: var(--color-gray-20);
    border-radius: var(--rounded-16);
}

.detail__content._brown{
    background: var(--color-brown-90);
}

.detail__content._blue{
    background: var(--color-blue-200);
}

.detail__content._white{
    background: var(--color-white);
}

.detail__img{
    width: 100%;
    height: 32rem;
    border-radius: var(--rounded-16);
    overflow: hidden;
}

.detail__img._full{
    height: auto;
}

.detail__img._full img{
    width: 100%;
    height: auto;
    border-radius: var(--rounded-16);
}

.detail__content p:not(:last-child){
    padding-bottom: 1.6rem;
}

.detail__content a:not([class]){
    text-decoration: underline;
    color: var(--color-blue-60);
}

.detail__content._brown .detail__content a:not([class]){
    color: var(--color-brown-20);
}

.detail__content a:not([class]):hover{
    text-decoration-color: transparent;
}
.detail__content-block:not(:last-child){
    margin-bottom: 3.2rem;
}
.detail__content-block ol:not(:last-child),
.detail__content-block ul:not(:last-child){
    margin-bottom: 1.6rem;
}

.detail__content img{
    position: relative;
    width: 40%;
    height: auto;
    object-fit: contain;
    border-radius: var(--rounded-16);
    overflow: hidden;
    margin-bottom: 1.6rem;
    float: right;
    margin-left: 1.6rem;
}

.detail__content ul li{
    position: relative;
    padding-left: 1.6rem;
}

.detail__content ul li:before{
    content: '';
    position: absolute;
    left: .6rem;
    top: .85rem;
    width: .3rem;
    height: .3rem;
    border-radius: var(--rounded-full);
    background: var(--color-font);
}


.detail__content ol {
    position: relative;
    padding-left: 1.6rem;
    list-style: decimal;
}

.detail__content h2 {
    font-size: var(--fz-32);
    line-height: 1.125;
    margin-bottom: 1.6rem;
}

.detail__content h3:not([class]) {
    font-size: var(--fz-20);
    line-height: 1.08;
    margin-bottom: 1.6rem;
}

.detail__content h4 {
    font-family: var(--ff-bold);
    font-size: var(--fz-18);
    line-height: 1.222;
    margin-bottom: 1.6rem;
}


.title-list{
    color: var(--color-blue-60);
}

.title-list._brown{
    color: var(--color-brown-20);
}

.title-list._blue{
    color: var(--color-font);
}

.title-list{
    color: var(--color-blue-60);
}

.title-list li{
    transition: var(--transition-main);
}

.title-list li:not(:last-child){
    margin-bottom: .8rem;
}

.title-list__link{
    color: var(--color-blue-60);
    text-decoration: underline;
    text-decoration-color: transparent;
}

.title-list._brown .title-list__link{
    color: var(--color-brown-20);
}

.title-list._blue .title-list__link{
    color: var(--color-font);
}

@media (hover: hover) {
    .title-list._blue li:hover .title-list__link,
    .title-list._blue li:hover{
        color: var(--color-blue-190);
    }
}

@media screen and (max-width: 1024px){
    .detail._half,
    .detail{
        grid-template-columns: repeat(1, 1fr);
    }

    .detail__content{
        margin: 0 -1.6rem;
    }

    .detail__right._order-1{
        order: -1;
    }
    .detail__content img{
        width: 100%;
        margin-left: 0;
    }
}
/* End */
/* /local/templates/lit_clinic/components/bitrix/system.pagenavigation/.default/style.css?17441819991545 */
/* /local/templates/lit_clinic/components/bitrix/news/services/bitrix/news.list/diagnostics-list/style.css?17781587605324 */
/* /local/templates/lit_clinic/assets/css/components/common/_text-mob-short.css?17811893852306 */
/* /local/templates/lit_clinic/components/bitrix/news/services/bitrix/news.detail/.default/style.css?178222356510358 */
/* /local/templates/lit_clinic/assets/css/components/detail/_detail.css?17797156443648 */
