/* Vars */
:root {
    --default-font-size: 15px;
    --default-line-height: normal;
    --default2-font-size: 18px;
    --default2-line-height: normal;
    --title-font-size: 20px;
    --title-line-height: normal;
    --title2-font-size: 24px;
    --title2-line-height: normal;
    --main-spacing: 20px;
    --default-spacing: 15px;
    --negative-default-spacing: -15px;
    --column-width: 25%;
    --column-width-alt: 33.33%;
}
@media only screen and (min-width: 768px) {
    :root {
        --main-spacing: 30px;
    }
}
@media only screen and (min-width: 1024px) {
    :root {
        --main-spacing: 40px;
    }
}

/* Layout */
html {
    /*overflow: hidden;*/
}
body {
    /*overflow: hidden;
    height: 100vh;*/
}
html.scroll-disabled,
body.scroll-disabled {
  overflow: hidden;
}
.logo,
#logo a {
    font-size: 35px;
    line-height: 35px;
    letter-spacing: 2px;
    font-weight: normal;
    text-transform: uppercase;
    padding-right: 50px;
    height: 60px;
}
@media only screen and (min-width: 768px) {
    .logo,
    #logo a {
        font-size: 60px;
        line-height: 60px;
    }
}
#logo {
    flex-grow: 2;
}
#container {
}
#header {
    display: flex;
    align-items: center;
    padding: var(--main-spacing);
}
#infos_button {
    display: block;
    cursor: pointer;
    width: 30px;
    height: 30px;
    background: url('../img/more.svg') no-repeat center center;
    background-size: 100%;
    flex-shrink: 0;
}
#filters_button {
    display: block;
    cursor: pointer;
    width: 30px;
    height: 30px;
    background: url('../img/search.svg') no-repeat center center;
    background-size: 90%;
    margin-right: 20px;
    flex-shrink: 0;
}
#menu {
    position: absolute;
    z-index: 900;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
    transition: 0.5s;
    text-align: center;
}
body.menu_expanded #menu {
    transform: translateY(0);
    transition: 0.5s;
}
body.menu_expanded #menu_button {
    background: url('../img/close.svg') no-repeat;
    background-size: 100%;
}
#content {
    /*opacity: 0;*/
    margin-top: 50px;
}
body.loaded #content {
    opacity: 1;
    transition: 0.5s;
}
#loading {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 1;
}
body.loaded #loading {
    transform: translate(-50%,-50%);
    opacity: 0;
}
#footer {
}











