

/* Start:/local/templates/box/style/showroom.css?17633640632103*/
.showroom p {
    font-family: var(--font-family-cormorant);
    font-style: normal;
    font-weight: 400;
    /* font-size: clamp(14px, 1vw, 15px); */
    font-size: 15px;
    line-height: 16px;
    word-break: break-word;

    text-align: justify;
}

.showroom .showroom-big-text{
    font-size: 18px;
    line-height: 19px;
    font-weight: 500;
}

.showroom p.title {
    font-size: clamp(18px, 2.6vw, 24px);
    margin-bottom: clamp(20px, 3vw, 56px);
    margin-top: 0;
    letter-spacing: 0.2em;
}

.showroom p.title:not(:first-child) {
    margin-top: clamp(30px, 3vw, 56px);
}

.showroom > div{
    margin-bottom: 35px;
}

.showroom img{
    display: block;
    width: 100%;
    line-height: auto;
    background: #f5f5f5;
}

.showroom * + img {
    margin-top: 20px;
}

.showroom .pd-top{
    padding-top: clamp(20px, 3.53125vw, 74px); 
}

.showroom h2{
    font-size: 18px;
    font-weight: 300;
}

/* Анимация появления изображений при скролле */
.showroom img.fade-in {
    opacity: 0;
}

/* Анимация исчезновения изображений при скролле */
.showroom img.fade-out {
    opacity: 1;
}

/* Анимация появления и исчезновения изображений при скролле */
.showroom img.fade-in-out {
    opacity: 0;
}

.showroom a{
    color: inherit;
}

main .main-container{
    padding: 0 30px;
}

main .main-container .big-picture{
    margin: 0 -30px;
}

@media screen and (max-width: 768px) {
    main .main-container{
        padding: 0 15px;
    }
    main .main-container .big-picture{
        margin: 0 -15px;
    }
    [data-slider="showroom"]{
        margin: 0 -5px 0;
    }
    [data-slider="showroom"] img{
        margin: 0 5px 0;
    }

    .showroom p{
        font-weight: 400;
        font-size: 17px;
        line-height: 21px;
    }

    .showroom p.title{
        font-size: 22px;
    }
}

/* .showroom .col--1 .content-sticky{
    max-width: 310px;
} */
/* End */


/* Start:/local/templates/box/style/grid-system.css?1763020776722*/
@media (min-width: 768px) {
    .grid-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        max-width: 100%;
    }

    .col--1 {
        grid-column: span 1;
    }

    .col--2 {
        grid-column: span 2;
    }

    .col--3 {
        grid-column: span 3;
    }

    .col--4 {
        grid-column: span 4;
    }

    .content-sticky {
        position: sticky;
        top: 30%;
    }

    .grid-container:first-child .content-sticky {
        top: clamp(160px, 15%, 300px);
    }

    .col--2-contacts{
        display: flex;
        justify-content: center;
    }

    .contacts-content{
        max-width: 500px;
    }
}
/* End */


/* Start:/local/templates/box/components/bitrix/form.result.new/default/style.css?17633605903296*/
/* Форма без таблиц - использует существующие стили ui-forms.css */
.form-container {
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; */
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.form-header {
    padding: 15px 0;
    border-bottom: none;
    background: none;
}

.form-header .form-description{
    /* font-size: 15px;
    line-height: 16px; */
}

.form-title {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.4;
}

.form-description {
    margin: 0;
}

.form-image {
    margin: 10px 0;
}

.form-image img {
    max-width: 300px;
    max-height: 200px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-fields {
    padding: 17px 0 20px 0;
}

/* Используем существующие стили ui-forms.css для полей ввода */
/* Все стили для .ui-input, .ui-input--text, .ui-input__label и т.д. уже определены в ui-forms.css */

.form-error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
}

.form-captcha {
    background-color: #f8f9fa;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

.form-captcha-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.form-captcha-image {
    margin: 10px 0;
}

.form-captcha-image img {
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-buttons {
    padding: 20px 0;
    background: none;
    border-top: none;
    text-align: center;
}

.form-buttons input[type="submit"],
.form-buttons input[type="reset"] {
    text-transform: uppercase;
    width: 100%;
    /* padding: 14px 20px;
    margin: 0 0 10px 0;
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    
    letter-spacing: 0.5px; */
}

.form-buttons input[type="submit"] {
    background-color: var(--main-color);
    color: white;
}

.form-buttons input[type="submit"]:hover {
    background-color: var(--btn-hover-bg-color);
}

.form-buttons input[type="submit"]:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

.form-buttons input[type="reset"] {
    background-color: #6c757d;
    color: white;
}

.form-buttons input[type="reset"]:hover {
    background-color: #545b62;
}

.form-footer {
    padding: 15px 0;
    background: none;
    border-top: none;
    font-size: 12px;
    color: #999;
    text-align: center;
}

/* Стили для скрытых полей */
.form-hidden {
    display: none;
}

/* .tx-red{
	display: none;
} */

.tx-red font{
    color: inherit !important;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .form-container {
        max-width: 100%;
        padding: 0 0;
		width: 100%;
    }
    
    .form-buttons input[type="submit"],
    .form-buttons input[type="reset"] {
        padding: 16px 20px;
    }
}
/* End */
/* /local/templates/box/style/showroom.css?17633640632103 */
/* /local/templates/box/style/grid-system.css?1763020776722 */
/* /local/templates/box/components/bitrix/form.result.new/default/style.css?17633605903296 */
