

/* Start:/local/components/vue/form/radio/radio-button/style.css?1745924421556*/
.radio-button__input{
    display: none;
}
.radio-button__box{
    background-color: var(--color-gray-light-medium, #F2F2F2);
    color: var(--color-text-default, #333);

    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 0.4rem;

    transition: background-color 0.15s, color 0.15s;
}
.radio-button__input:checked ~ .radio-button__box{
    background-color: var(--color-green-yellowish, #A2C037);
    color: white;
}
@media (max-width: 991px) {
    .radio-button__box {
        padding: 0.7rem 1.5rem;
        font-size: 1.4rem;
    }
}
/* End */


/* Start:/local/components/vue/tile-galleries/built-stages-gallery/simple-gallery-component/style.css?17751178701775*/
/* Стили для простой галереи (fancybox) */
.simple-gallery__grid {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

/* 1 колонка */
.simple-gallery__grid--1-cols {
    grid-template-columns: 1fr;
}

/* 2 колонки (по умолчанию) */
.simple-gallery__grid--2-cols {
    grid-template-columns: repeat(2, 1fr);
}

/* 3 колонки */
.simple-gallery__grid--3-cols {
    grid-template-columns: repeat(3, 1fr);
}

.simple-gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    background-color: #f5f5f5;
    text-decoration: none;
    display: block;
}

/* Адаптивная высота для разных сеток */
.simple-gallery__grid--1-cols .simple-gallery__item {
    aspect-ratio: 16 / 9;
}

.simple-gallery__grid--2-cols .simple-gallery__item {
    aspect-ratio: 16 / 9;
}

.simple-gallery__grid--3-cols .simple-gallery__item {
    aspect-ratio: 1 / 1;
}

.simple-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.simple-gallery__item:hover img {
    transform: scale(1.05);
}

/* Адаптив для мобильных устройств */
@media (max-width: 768px) {
    /* На мобильных всегда 2 колонки */
    .simple-gallery__grid--1-cols,
    .simple-gallery__grid--2-cols,
    .simple-gallery__grid--3-cols {
        grid-template-columns: repeat(2, 1fr);
    }

    .simple-gallery__grid--1-cols .simple-gallery__item,
    .simple-gallery__grid--2-cols .simple-gallery__item,
    .simple-gallery__grid--3-cols .simple-gallery__item {
        aspect-ratio: 16 / 9;
    }

    .simple-gallery__grid {
        gap: 15px;
    }
}


/* End */


/* Start:/local/css/elements/gwd.button.green-outline.css?1745924421308*/
.btn.btn-green-outline{
    --button-color: var(--color-brand-primary);
    --button-background: transparent;

    border: 1px solid var(--button-color);

    font-weight: 500;
}

.btn.btn-green-outline:not(:disabled):hover{
    --button-background: #e3ebdc;
    /*border-color: var(--button-background);*/
}
/* End */


/* Start:/local/components/vue/stages-gallery/construction-types-list-component/style.css?17459244211129*/
.construction-type{
    background-color: #f8f8f8;

    background-repeat: no-repeat;
    background-size: contain;

    border-radius: 1.2rem;

    overflow: hidden;

    display: flex;
    flex-flow: column;
    align-items: flex-start;
}
@media (width >= 768px) {
    .construction-type{
        height: 43rem;
        background-position: right bottom;
        padding: 5rem 4.8rem 3.6rem;
    }
}
@media (width < 768px) {
    .construction-type{
        background-size: 80% auto;
        background-position: center 2rem;
        padding: 23rem 2.7rem 1.6rem;
    }
    .construction-type__wrapper + .construction-type__wrapper{
        margin-top: 2.5rem;
    }
}
.construction-type__name{
    margin-bottom: 1.6rem;
}
.construction-type__description{
    line-height: 1.333;
    font-size: 1.8rem;
}
.construction-type__description ul,
.construction-type__description ol {
    padding-left: 1.8rem;
}
.construction-type a{
    margin-top: auto;
}
@media (width < 768px) {
    .construction-type a{
        margin-top: 0.5rem;

        position: relative;
        left: -1.1rem;
        width: calc(100% + 2.2rem);
    }
}
/* End */


/* Start:/local/components/vue/misc/bottom-popup-panel/style.css?17751178702910*/
.bottom-popup{
    position: fixed;

    width: 100vw;

    bottom: 0;
    left: 0;
    z-index: 1000000;

    display: flex;
    flex-flow: column;

    padding: 16px;
    gap: 8px;

    transform: translateY(100%);

    border-radius: 24px 24px 0 0;

    background: white;
}
@media (min-width: 768px) {
    .bottom-popup{
        padding: 24px;
        gap: 12px;
    }
}
@media (min-width: 992px) {
    .bottom-popup{
        padding: 40px;
        gap: 20px;
    }
}
@media (hover: none) {
    .bottom-popup{
        padding-top: 30px;
    }
    .bottom-popup__handle{
        width: 10rem;
        height: 3rem;

        position: absolute;
        padding-top: 0.8rem;
        top: 0;
        display: flex;
        justify-content: center;
        left: calc(50% - 5rem);
    }
    .bottom-popup__handle::before{
        content: '';
        display: block;

        width: 7.7rem;
        height: 4px;
        border-radius: 999px;

        background-color: var(--black-a25);
    }
}
@media (hover: hover) {
    .bottom-popup__handle{
        display: none;
    }
}
@media (min-width: 992px) {
    .bottom-popup{
        width: fit-content;
        left: calc(50% - 450px);
        bottom: unset;

        border-radius: 24px;
    }
}
.bottom-popup.--transition{
    transition: transform 0.15s;
}
.bottom-popup__header{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;

    position: relative;

    flex-shrink: 0;
}
.bottom-popup__name{
    font-weight: 500;
    font-size: 1.8rem;
    margin-bottom: 0;
}

.bottom-popup__scroller{
    /*background: white;*/
    overflow-y: auto;
    overflow-x: hidden;

    flex-shrink: 1;
    flex-grow: 1;

}

.bottom-popup__footer{
    display: flex;
    flex-flow: column;
    gap: 1.2rem;
}
@media (min-width: 768px) {
    .bottom-popup__footer{
        flex-flow: row;
    }
}
@media (max-width: 767px) {
    .bottom-popup__footer .btn {
        width: 100%;
    }
}
.bottom-popup__close{
    border: none;
    background: none;
    padding: 0;
    width: 3.2rem;
    height: 3.2rem;

    position: absolute;
    right: 0;
    top: -50px;

    fill: white;
}
.bottom-popup__close > * {
    width: 2rem;
    height: 2rem;
}
.bottom-popup__background{
    display: none;

    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

    background: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(4px);

    opacity: 0;

    transition: opacity 0.15s;
    z-index: 100000;
}

body.--stages-gallery .bottom-popup.--stage-gallery-popup{
    z-index: 100000;
}

body.--stages-gallery .bottom-popup__background.--stage-gallery-popup-bg{
    z-index: 99999;
    backdrop-filter: blur(4px);
}

.fancybox-container,
.fancybox__container{
    z-index: 2147483647 !important;
}

body.--filters-open{
    overflow: hidden;
}

body.--filters-open .mob_contact{
    display: none!important;
}
/* End */


/* Start:/built/stages-gallery/style.css?17799547849407*/
#stages-gallery-app{
    margin-bottom: 96px;
}

.stage-gallery__wrapper {
    display: flex;
    flex-direction: column;
}
.stage-gallery__container {
    display: flex;
    flex-direction: row;
    gap: 42px;
    align-items: flex-start;
}

.stage-gallery__menu-shell {
    min-width: 280px;
    width: 35%;
    position: relative;
}

.stage-gallery__menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 32px;
    border-radius: 16px;
    background: #F0F5F1;
    padding: 32px;
    align-items: flex-start;
    align-self: flex-start;
    position: relative;
}
.stage-section-view {
    display: flex;
    flex-direction: column;
    width: 65%;
    align-self: flex-start;
}
.menu__title {
    color: #000;
    font-family: Manrope;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 20px;
}

.menu__links {
    position: relative;
}

.links__line {
    position: absolute;
    left: 5px;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background-color: #386753;
    border-radius: 2px;
}

.links__container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.links__wrapper {
    width: 100%;
}

.menu__link {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.2s ease;
    position: relative;
    cursor: pointer;
    text-decoration: none;
}

.link__text {
    text-decoration: none;
    color: #000;
    font-family: Manrope;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    font-size: 20px;
    opacity: 0.5;
}


.menu__link--active {
    opacity: 1;
    .link__dot {
        border-color: #1F4F3C;
        background-color: #1F4F3C;
    }
    .link__dot:hover {
        border-color: #1F4F3C;
        background-color: #1F4F3C;
    }
    .link__text {
        opacity: 1;
        color: #1F4F3C;
    }
    .link__text:hover {
        color: #1F4F3C;
        opacity: 1;
    }
}


.link__dot {
    width: 12px;
    height: 12px;
    border: 1px solid rgba(0, 0, 0, 0.50);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.2s ease;
    z-index: 3;
    position: relative;
    background-color: #F0F5F1;
}
.link__arrow {
    display: none;
}

.link__text:hover  {
    opacity: 1;
    color: #6A9B84;
}

.menu__link:hover .link__dot {
    border-color:  #6A9B84;
}

.link__text {
    flex: 1;
}

.stage-section-view__section-name {
    color: rgba(0, 0, 0, 0.60);
    font-family: Manrope;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 32px;
}

.stage-section-view__buttons-block {
    display: flex;
    gap: 22px;
}

.stage-section-view__buttons-container {
    display: flex;
    gap: 10px;
    border-radius: 24px;
    background: #F0F5F1;
    padding: 4px;
    margin-bottom: 22px;
    min-height: 44px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: #1F4F3C #E0E8E2;
    max-width: fit-content;
}

.stage-section-view__buttons-container::-webkit-scrollbar {
    height: 1px;
}

.stage-section-view__buttons-container::-webkit-scrollbar-track {
    background: #E0E8E2;
    border-radius: 4px;
}

.stage-section-view__buttons-container::-webkit-scrollbar-thumb {
    background: #1F4F3C;
    border-radius: 4px;
}

.stage-section-view__buttons-container::-webkit-scrollbar-thumb:hover {
    background: #386753;
}

.stage-section-view__buttons {
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    color: #252726;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.stage-section-view__buttons.active {
    padding: 8px 16px;
    border-radius: 100px;
    background: white;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.10);
}

.stage-section-view__video-buttons {
    display: flex;
    padding: 8px 8px 8px 16px;
    justify-content: center;
    align-items: center;
    color: #386753;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
    gap: 4px;
    border-radius: 24px;
    background: #DBEFE1;
    margin-bottom: 22px;
    min-height: 44px;
    max-width: fit-content;
    cursor: pointer;
}

.stage-section-view__video-buttons:hover {
    background: #BDD9C6;
    color: #2D5242;
}

.stage-section-view__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stage-section-view__sidebar {
    display: flex;
}
.sidebar__menu {
    display: flex;
    gap: 8px;
    padding: 0;
    flex-wrap: wrap;
    list-style: none;
}

.sidebar__menu-item {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #F1F1F1;
    height: 38px;
    cursor: pointer;
}

.sidebar__menu-item--inactive:hover {
    background: #F0F5F1;
}
.sidebar__menu-text {
    color: #252726;
    text-overflow: ellipsis;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding: 6px 12px;
}
.sidebar__menu-item--active {
    background: #386753;
    .sidebar__menu-text {
        color: white;
    }
}

.subsection-element {
    display: flex;
    flex-direction: column;
}
.subsection-element__header {
    display: flex;
    gap: 24px;
    justify-content: space-between;
}
.gallery-filters {
    display: flex;
    align-items: center;
}
.filters__buttons {
    display: flex;
    gap: 12px;
    padding: 3px 8px;
    align-items: center;
    border-radius: 50px;
    background: #F0F5F1;
}
.filter__icon {
    fill: #00513A;
    stroke: #00513A;
}
.filter__btn {
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter__btn--active {
    border-radius: 100px;
    background: #6A9B84;
    .filter__icon {
        fill: white;
        stroke: white;
    }
}

.header-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.header-content__titile {
    color: #000;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.header-content__description {
    color: #000;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    opacity: 0.5;
}

.gallery__line {
    display: none;
}

@media (max-width: 768px) {
    #stages-gallery-app{
        margin-bottom: 60px;
    }

    .menu__title {
        font-size: 22px;
        text-align: center;
        margin: 20px 15px;
    }

    .stage-gallery__container {
        display: flex;
        gap: 0;
        align-items: flex-start;
        margin: 0 -15px;
    }

    .stage-gallery__menu {
        background: #F0F5F1;
        border-radius: 0;
        padding: 16px;
        width: 100%;
        top: 0;
        max-height: 100%;
        overflow: hidden;
    }

    .stage-gallery__menu-shell {
        width: 100%;
        min-width: 0;
    }

    .links__line {
        display: none;
    }

    .links__container {
        gap: 12px;
    }

    .menu__link {
        border-radius: 12px;
        background: #FFF;
        padding: 12px;
    }

    .link__dot {
        display: none;
    }

    .link__text {
        font-size: 18px;
        opacity: 1;
    }

    .link__arrow {
        display: block;
    }

    .stage-section-view {
     width: 100%;
     max-height: 100%;
     overflow: hidden;
    }

    .stage-section-view__header {
        display: flex;
        align-items: center;
        margin: 20px 15px;
    }

    .stage-section-view__section-button {
        width: 10%;
        display: flex;
        background: #F0F5F1;
        border-radius: 100%;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }

    .stage-section-view__section-name {
        text-align: center;
        width: 90%;
        margin: 0 5% 0 0;
        font-size: 18px;
        color: #000;
    }

    .sidebar__menu {
        width: 100%;
        flex-direction: column;
    }

    .sidebar__menu-item {
        justify-content: flex-start;
        height: auto;

    }

    .stage-section-view__buttons-block {
        flex-direction: column;
        gap: 0;
    }

    .stage-section-view__buttons-container {
        max-width: fit-content;
        scrollbar-width: none;
        position: relative;
        left: 15px;
    }

    .stage-section-view__video-buttons {
        max-width: fit-content;
        scrollbar-width: none;
        position: relative;
        left: 15px;
    }

    .stage-section-view__content {
        padding: 0 15px;
    }

    .sidebar__menu-text {
        padding: 12px 16px;
    }

    .gallery-filters {
        display: none;
    }

    .subsection-element__header {
        flex-direction: column;
    }

    .gallery__line {
        display: flex;
        height: 2px;
        border: none;
        border-top: 1px solid #000;
        padding: 0;
        opacity: 0.1;
        width: 150px;
        margin: 0 30%;
    }

    .popup__bottom-button {
        display: flex;
        gap: 100px;
        .btn.btn-brand:hover {
            background: #0e5137;
            color: white;
        }
    }

}
/* End */
/* /local/components/vue/form/radio/radio-button/style.css?1745924421556 */
/* /local/components/vue/tile-galleries/built-stages-gallery/simple-gallery-component/style.css?17751178701775 */
/* /local/css/elements/gwd.button.green-outline.css?1745924421308 */
/* /local/components/vue/stages-gallery/construction-types-list-component/style.css?17459244211129 */
/* /local/components/vue/misc/bottom-popup-panel/style.css?17751178702910 */
/* /built/stages-gallery/style.css?17799547849407 */
