

/* Start:/local/components/flashformat/cookies/templates/.default/style.css?17762205095768*/
:root {
    /*--so_cookie-color11: #cea555;*/
    /*--so_cookie-color2: #22c55e;*/
    /*--so_cookie-color1: #16a34a;*/
    --so_cookie-color1: #323d7e;
}
.button--cookie{
    color: white;
    background-color: var(--so_cookie-color1);
    outline: 2px solid var(--so_cookie-color1);
    outline-offset: 2px;
    border: unset;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    font-family: 'Myriad Pro Regular', sans-serif;
    text-transform: uppercase;
    padding: 5px 15px;
}
.button--cookie_setup {
    background: #FFF;
    color: var(--so_cookie-color1);
}
.button--cookie_setup:hover {
    color: #afb5e7;
}

.so-cookie-notification {
    position: fixed;
    width: 98%;
    bottom: 170px;
    font-size: 14px;
    color: #060607;
    background: #fff;
    box-shadow: 0 0 100px rgba(0,0,0,.4);
    z-index: 100;
    padding: 15px;
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-row-gap: 18px;
    transition: bottom .4s ease-in,visibility .4s linear,opacity .4s linear;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.so-cookie-notification--hide {
    bottom: -100%;
    visibility: hidden;
    opacity: 0;
}

.so-cookie-notification__text {
    text-align: left;
    font-family: 'Myriad Pro Regular', sans-serif;
}

.so-cookie-notification__controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
}

.so-cookie-notification__controls .button {
    justify-self: center;
    cursor: pointer;
}

.so-cookie-notification__text a {
    -webkit-text-fill-color : var(--so_cookie-color1);
    color: var(--so_cookie-color1);
}


.so-cnf {
    position: fixed;
    /*width: 98%;*/
    bottom: 170px;
    font-size: 14px;
    font-family: 'Myriad Pro Regular', sans-serif;
    color: #060607;
    box-shadow: 0 0 100px rgba(0,0,0,.4);
    z-index: 100;
    padding: 15px;
    display: grid;
    transition: right .4s ease-in,visibility .4s linear,opacity .4s linear;
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
    text-align: left;
    max-width: 400px;
    box-sizing: border-box;
    opacity: 1;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    /*max-height: calc(100vh - 20px - 2 * 34px);*/
    right: 10px;
}

.so-cnf__row {
    border-bottom: 1px solid rgba(157,153,153,.4);
    line-height: 18px;
    padding: 8px 0;
}

.so-cnf__header {
    padding-top: 0;
    cursor: pointer;
}

.so-settings-spoiler {

}

.so-settings-spoiler__header {
    display: grid;
    grid-template-columns: 15px 1fr 130px;
    align-items: center;
    cursor: pointer;
}

.so-settings-spoiler__title {
    /*font-size: 18px;*/
    font-weight: bold;
}

.so-settings-spoiler__marker {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 11px;
    width: 11px;
    height: 11px;
    border: none;
    background-color: transparent;
    outline: none;
    cursor: pointer;
}

.so-settings-spoiler__line_vertical,
.so-settings-spoiler__line_horizontal {
    position: absolute;
    background-color: #202020;
    transition: all 0.3s ease;
    opacity: 1;
}

.so-settings-spoiler__line_vertical {
    width: 100%;
    height: 1px;
}

.so-settings-spoiler__line_horizontal {
    height: 100%;
    width: 1px;
}

.so-settings-spoiler__control {

}

.so-settings-spoiler__text {
    /*height: 0;*/
    /*transition: all 0.5s ease 0s;*/
    /*opacity: 0;*/

    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

._opened .so-settings-spoiler__text {
    /*height: 100%;*/
    /*padding: 10px;*/
    /*opacity: 1;*/
    padding: 10px;
    max-height: 500px;
}

._opened .so-settings-spoiler__line_horizontal {
    display: none;
}

.so-settings-spoiler__control.__is-active {
    color: var(--so_cookie-color1);
}


.so-toggle__wrapper {}
.so-toggle__label {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.so-toggle__input {
    /*display: none;*/
}
.so-toggle__text.on {
    color: var(--so_cookie-color1);
}
.so-toggle__text.on,
._is_active .so-toggle__text.off
{
    display: none;
}
.so-toggle__text.off,
._is_active .so-toggle__text.on {
    display: block;
}

.so-toggle__container {
    width: 48px;
    height: 24px;
    border-radius: 100px;
    margin-left: 6px;
    margin-bottom: 0;
    cursor: pointer;
    transition: all ease 0.3s;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}
.so-toggle__background {
    background-color: #c6c5c5;
    width: 100%;
    height: 100%;
    position: absolute;
    transition: all ease 0.3s;
}
.so-toggle__mark {
    width: 20px;
    height: 20px;
    background-color: #f1f1f1;
    box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 2px rgba(0,0,0,.24);
    border-radius: 50%;
    margin: 2px;
    transform: translateX(0);
    transition: all ease 0.3s;
}

._is_active .so-toggle__background {
    background-color: var(--so_cookie-color1);
    opacity: .3;
}

._is_active .so-toggle__mark {
    background-color: var(--so_cookie-color1);
    transform: translateX(24px);
}


@media (min-width: 768px) {
    .so-cookie-notification {
        width: 800px;
        grid-template-columns: 1fr 330px;
        grid-row-gap: 0;
        grid-template-rows: none;
        bottom: 30px;
    }
}
/* End */


/* Start:/local/templates/trois_champignons/components/flashformat/header/trois_champignons/style.css?17754460434583*/
section[id]{
    scroll-margin-top: 150px;
}
.cafeteria-header{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background-color: var(--bg-color-secondary);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.cafeteria-header.scrolled{
    background-color: rgba(81, 60, 43, .8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    -webkit-animation: headerAppearance .5s linear forwards;
    -o-animation: headerAppearance .5s linear forwards;
    animation: headerAppearance .5s linear forwards;
}
.cafeteria-header.scrolled .cafeteria-header__logo{
    width: 250px;
    padding-top: .8rem;
}
.cafeteria-header.scrolled .cafeteria-header__menu{
    padding: 1.5rem 0;
}
.cafeteria-header .cafeteria-header__logo{
    width: 400px;
    padding-top: 2rem;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.cafeteria-header .cafeteria-header__menu{
    padding: 2rem 0;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.cafeteria-header .cafeteria-header__menu .regular-link{
    margin-inline: 1.6rem;
    font-size: 1.4rem;
}
.cafeteria-header .cafeteria-header__menu .regular-link::after{
    border-color: var(--text-color-secondary);
}

.header-burger-btn{
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1;
}

.header-burger-btn span{
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-color-secondary);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}
.header-burger-btn span:nth-child(1) {
    top: 0;
}

.header-burger-btn span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.header-burger-btn span:nth-child(3) {
    bottom: 0;
}

.header-burger-btn.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.header-burger-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
}

.header-burger-btn.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.header-mobile-menu li:nth-last-child{
    border: none;
}
.header-mobile-menu{
    height: 0;
}
.header-mobile-menu.active{
    height: auto;
}
.header-mobile-menu ul{
    list-style: none;
    visibility: hidden;
    max-height: 0;
    opacity: 0;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
}
.header-mobile-menu.active ul{
    visibility: visible;
    max-height: 100%;
    opacity: 1;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
@media (max-width: 1199px) {
    .cafeteria-header .cafeteria-header__menu .regular-link{
        margin-inline: .4rem;
    }
}
@media (max-width: 991px) {
    .cafeteria-header .cafeteria-header__logo{
        width: 280px;
        padding: 2rem 0;
    }
    .cafeteria-header.scrolled .cafeteria-header__logo{
        width: 260px;
        padding: 1rem 0;
    }
    .cafeteria-header .cafeteria-header__menu{
        padding: 1.2rem 0;
    }
}

@media (max-width: 767px) {
    /*.cafeteria-header .cafeteria-header__logo{*/
    /*    padding: 2rem 0;*/
    /*}*/
    /*.cafeteria-header.scrolled .cafeteria-header__logo{*/
    /*    padding: 1rem 0;*/
    /*}*/
    section[id]{
        scroll-margin-top: 100px;
    }
}

@media (max-width: 575px) {
    .cafeteria-header .cafeteria-header__logo{
        width: 200px;
    }
    .cafeteria-header.scrolled .cafeteria-header__logo{
        width: 180px;
    }
}

@-webkit-keyframes headerAppearance {
    0%{
        transform: translateY(-150%);
    }
    to{
        transform: translateY(0%);
    }
}
/* End */


/* Start:/local/templates/trois_champignons/components/flashformat/footer/trois_champignons/style.css?1774247359400*/
.cafe-footer{
    padding: 5rem 4rem 6rem 4rem !important;
}
.cafe-footer .regular-link,
.cafe-footer .regular-text{
    font-size: 1.4rem;
    line-height: 1.6rem;
}
.cafe-footer .footer-logo{
    margin-top: 5rem;
}

@media (max-width: 991px) {
    .cafe-footer{
        padding: 3rem 1rem 4rem 1rem !important;
    }
    .cafe-footer .footer-logo{
        margin-top: 0;
    }
}
/* End */
/* /local/components/flashformat/cookies/templates/.default/style.css?17762205095768 */
/* /local/templates/trois_champignons/components/flashformat/header/trois_champignons/style.css?17754460434583 */
/* /local/templates/trois_champignons/components/flashformat/footer/trois_champignons/style.css?1774247359400 */
