

/* Start:/open-day/style.css?17751391399202*/
.landing {
    display: grid;
    font-size: 13px;
    gap: 40px;
    line-height: 1.4;

    h2 {
        line-height: 1.4;
        margin-top: 0;

        @media (max-width: 1019px) {
            margin-bottom: 8px;
            font-size: 20px;
        }

        @media (min-width: 1020px) {
            margin-bottom: 16px;
            font-size: 28px;
        }
    }

    a:not(.button) {
        color: #177df4;

        &:hover {
            color: #0055b3;
        }
    }
}

.premiere {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 47px 63px 0 #0000000D;
    display: grid;
    padding: 40px 60px;

    @media (max-width: 1019px) {
        padding: 24px 0 24px 12px;
    }

    @media (min-width: 1020px) {
        grid-template-columns: 40% 60%;
        padding: 40px 60px;
    }

    .description {
        line-height: 2;
    }

    .button {
        @media (max-width: 1019px) {
            margin-top: 16px;
        }

        @media (min-width: 1020px) {
            margin-top: 40px;
        }
    }

    .premiere-image {
        display: flex;

        @media (max-width: 1019px) {
            order: -1;
            margin-bottom: 16px;
        }

        img {
            max-width: 100%;
        }
    }
}

.products {
    h2 {
        margin-bottom: 24px;
    }

    .grid {
        display: grid;

        @media (max-width: 1019px) {
            gap: 16px;
            grid-template-columns: repeat(2, 1fr);
        }

        @media (min-width: 1020px) {
            gap: 24px;
            grid-template-columns: repeat(3, 1fr);
        }
    }

    .card {
        display: grid;
        background: #fff;
        border-radius: 8px;
        text-align: center;
        font-weight: 700;
        text-decoration: none;

        @media (min-width: 1020px) {
            padding: 0 20px 16px;
        }

        & > div {
            -webkit-box-orient: vertical;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            line-height: 2;
            max-height: 4em;
            overflow: hidden;
            text-overflow: ellipsis;

            @media (max-width: 1019px) {
                padding: 0 8px 16px;
            }
        }
    }

    .card img {
        max-width: 100%;
        object-fit: contain;

        @media (max-width: 1019px) {
            height: 124px;
        }

        @media (min-width: 1020px) {
            height: 211px;
        }
    }
}

.details {
    @media (max-width: 1019px) {
        display: grid;
        gap: 16px;
        grid-template: 1fr / 1fr 1fr;

        & > div:last-child {
            grid-column: 1 / -1;
        }
    }

    @media (min-width: 1020px) {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
    }

    h5 {
        margin-bottom: 10px;
        margin-top: 0;
    }
}


.open-day-banner {
    margin-bottom: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 47px 63px 0 #0000000D;
    --pink-line-angle: 2deg;
    line-height: 1.4;
    max-width: 970px;
    overflow: hidden;
    position: relative;

    @media (max-width: 1019px) {
        font-size: 11px;
        padding: 12px;
    }

    @media (min-width: 1020px) {
        font-size: 14px;
        padding: 60px;

        .landing & {
            font-size: 16px;
            padding-top: 73px;
            padding-bottom: 73px;
        }
    }

    h1 {
        position: relative;
        line-height: 1.4;
        margin-top: 0;
        z-index: 10;

        @media (max-width: 1019px) {
            font-size: 24px;
            margin-bottom: 4px;
        }

        @media (min-width: 1020px) {
            font-size: 40px;
            margin-bottom: 16px;
        }
    }

    .description {
        position: relative;
        z-index: 10;

        @media (min-width: 1020px) {
            max-width: 50%;
        }

        & + & {
            margin-top: 24px;
        }
    }

    .button {
        @media (max-width: 1019px) {
            font-size: 12px;
        }

        @media (min-width: 1020px) {
            font-size: 14px;
        }
    }

    .event-info {
        position: relative;
        z-index: 10;

        @media (max-width: 1019px) {
            color: #fff;
            display: grid;
            gap: 8px;
            margin-top: 18px;
            max-width: 50%;
        }

        @media (min-width: 1020px) and (max-width: 1200px) {
            flex-wrap: wrap;
        }

        @media (min-width: 1020px) {
            display: flex;
            gap: 40px;
            margin-top: 40px;
            max-width: 50%;

            .landing & {
                margin-top: 60px;
            }
        }
    }

    .date {
        white-space: nowrap;
        align-items: center;
        color: #fff;
        display: flex;
        gap: 8px;
        line-height: 1.4;

        @media (max-width: 1019px) {
            font-size: 12px;
        }

        @media (min-width: 1020px) {
            font-size: 20px;
            position: relative;
        }

        svg {
            fill: #fff;
            flex-shrink: 0;
            position: relative;
            z-index: 10;

            @media (max-width: 1019px) {
                height: 20px;
                width: 20px;
            }

            @media (min-width: 1020px) {
                height: 24px;
                width: 24px;
            }
        }

        span {
            position: relative;
            z-index: 10;
        }
    }

    .location {
        align-items: center;
        display: flex;
        gap: 8px;
        line-height: 1.4;

        @media (max-width: 1019px) {
            color: #fff;
            font-size: 10px;
        }

        @media (min-width: 1020px) {
            font-size: 14px;
        }

        svg {
            flex-shrink: 0;

            @media (max-width: 1019px) {
                fill: #fff;
                height: 20px;
                width: 20px;
            }

            @media (min-width: 1020px) {
                fill: #333;
                height: 24px;
                width: 24px;
            }
        }
    }

    .image {
        display: flex;
        bottom: 5%;
        position: absolute;
        z-index: 5;

        @media (max-width: 1019px) {
            right: -15%;
            max-width: 65%;
        }

        @media (min-width: 1020px) {
            max-width: 50%;
            right: 0;
        }

        img {
            height: auto;
            width: 100%;
        }
    }

    .footer {
        align-items: center;
        display: flex;
        gap: 20px;
        position: relative;
        z-index: 10;

        @media (max-width: 1019px) {
            margin-top: 15px;

            .landing & {
                font-size: 10px;
                margin-top: 45px;
            }
        }

        @media (min-width: 1020px) {
            margin-top: 50px;
        }
    }

    .registration {
        @media (max-width: 1019px) {
            font-size: 8px;
        }

        @media (min-width: 1020px) {
            font-size: 12px;
        }
    }

    .lines-4 {
        pointer-events: none;
        position: absolute;
        right: 5%;
        top: 10%;
    }

    .lines-2 {
        pointer-events: none;
        position: absolute;
        right: 50%;
        top: 45%;
    }

    .pink-line-1 {
        background: #e14e94;
        inset: -5px -5% -5px -100%;
        pointer-events: none;
        position: absolute;
        transform: rotate(var(--pink-line-angle));
        z-index: -1;

        @media (max-width: 1019px) {
            inset: -5px -5% 5px -100%;

            .landing & {
                inset: -5px -5% -3px -100%;
            }
        }

        @media (min-width: 1020px) {
            inset: -5px -5% -5px -100%;
        }
    }

    .pink-line-2 {
        background: #e14e94;
        height: 10px;
        left: -100%;
        pointer-events: none;
        position: absolute;
        right: 50%;
        top: -19px;
        transform: rotate(var(--pink-line-angle));
        z-index: -1;
    }

    .pink-line-3 {
        background: #e23381;
        height: 15px;
        left: -100%;
        pointer-events: none;
        position: absolute;
        right: 30%;
        transform: rotate(var(--pink-line-angle));
        z-index: -3;

        @media (max-width: 1019px) {
            bottom: -3px;

            .landing & {
                bottom: -13px;
            }
        }

        @media (min-width: 1020px) {
            bottom: -17px;
        }
    }
}

@media (max-width: 1019px) {
    .if-desktop {
        display: none !important;
    }
}

@media (min-width: 1020px) {
    .if-mobile {
        display: none !important;
    }
}


/* End */


/* Start:/local/templates/la_chatte/components/altop/forms/open-day/style.css?17751381522980*/
.inline-form {
    background: #fff;
    box-shadow: 0 47px 63px 0 #0000000D;

    @media (max-width: 1019px) {
        padding: 24px 12px;
    }

    @media (min-width: 1020px) {
        padding: 40px 60px;
    }

    h2 {
        margin-top: 0;
        margin-bottom: 8px;

        & + p {
            margin-bottom: 0;
        }
    }

    .alert {
        display: block;
        padding-top: 20px;
        padding-bottom: 0;
    }

    .alert:empty {
        display: none;
    }

    .form-body {
        display: grid;
        grid-template-columns: repeat(12, 1fr);

        @media (max-width: 1019px) {
            margin-top: 16px;
            gap: 8px;
        }

        @media (min-width: 1020px) {
            margin-top: 24px;
            gap: 24px;
        }

        .row {
            @media (max-width: 1019px) {
                grid-column: 1 / -1;
            }

            @media (min-width: 1020px) {
                &.row-text {
                    grid-column: span 6;
                }

                &.row-COMMENT {
                    grid-column: span 9;
                }

                &.row-PERSON_COUNT {
                    grid-column: span 3;
                }
            }
        }

        .hint_agreement {
            margin-bottom: 0;
            grid-column: 1 / -1;
        }

        .submit {
            grid-column: 1 / -1;
        }
    }

    .span2 input {
        width: 100%;
        border: none;
        background: #f8f8f8;
        padding: 12px;
    }

    .mf-req {
        color: red;
        margin-left: 2px;
    }

    .alertMsg {
        padding-bottom: 1em;
        color: red;
        display: flex;

        &.good {
            color: #177df4;
            text-align: center;
        }
    }

    .fa-exclamation-triangle {
        width: 24px;
        height: 24px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' viewBox='596 -596 1792 1792' style='enable-background:new 596 -596 1792 1792;'%3E%3Cpath d='M1610.5,866.5c-6.3,6.3-13.8,9.5-22.5,9.5h-192c-8.7,0-16.2-3.2-22.5-9.5c-6.3-6.3-9.5-14.2-9.5-23.5V653 c0-9.3,3.2-17.2,9.5-23.5c6.3-6.3,13.8-9.5,22.5-9.5h192c8.7,0,16.2,3.2,22.5,9.5c6.3,6.3,9.5,14.2,9.5,23.5v190 C1620,852.3,1616.8,860.2,1610.5,866.5z M1607.5,485.5c-6.3,4.3-14.2,6.5-23.5,6.5h-185c-9.3,0-17.3-2.2-24-6.5 c-6.7-4.3-10-9.8-10-16.5l-17-457c0-9.3,3.3-16.3,10-21c8.7-7.3,16.7-11,24-11h220c7.3,0,15.3,3.7,24,11c6.7,4.7,10,11,10,19 l-18,459C1617.3,475.7,1613.8,481.2,1607.5,485.5z M1557-514c-20-12-41.7-18-65-18c-23.3,0-45,6-65,18s-35.7,28.3-47,49L612,943 c-23.3,42-22.7,84,2,126c11.3,19.3,26.8,34.7,46.5,46s40.8,17,63.5,17h1536c22.7,0,43.8-5.7,63.5-17c19.7-11.3,35.2-26.7,46.5-46 c24.7-42,25.3-84,2-126L1604-465C1592.7-485.7,1577-502,1557-514z' fill='red'/%3E%3C/svg%3E") center/cover no-repeat;
        margin-right: 10px;
    }
}

/* End */
/* /open-day/style.css?17751391399202 */
/* /local/templates/la_chatte/components/altop/forms/open-day/style.css?17751381522980 */
