/* Vars */
:root {
    --default-font-family: 'bodoni';
    --default-font-size: 20px;
    --default-line-height: 24px;

    --title-font-family: 'bodoni';
    --title-font-size: 30px;
    --title-line-height: normal;
    
    --title2-font-family: 'bodoni';
    --title2-font-size: 25px;
    --title2-line-height: normal;
    
    --default-spacing: 15px;

    --column-width: 25%;
    --column-width-alt: 33.33%;
    

    --active-color: #FFBEBF;

    --color1: #FFF0C9; /* Yellow */
    --color2: #E0EDFF; /* Blue */
    --color3: #FFBEBF; /* Pink */
    --color4: #E0F2DB; /* Green */
}
@media only screen and (min-width: 768px) {
    :root {
        --default-spacing: 20px;
    }
}
@media only screen and (min-width: 1024px) {
}
html {
  -webkit-text-size-adjust: 100%;
}
textarea,
body,
a {
	color: #000;
	font-family: var(--default-font-family), Arial, Verdana, Sans-serif;
	font-size: var(--default-font-size);
	line-height: var(--default-line-height);
}
strong {
    font-weight: 800;
}
.name {
    font-family: var(--title-font-family);
    font-size: 20px;
    line-height: normal;
}

/* Layout */
html {
}
body {
    height: 100vh;
}
html.scroll-disabled {
    padding-right: 20px;
	overflow: hidden;
}
.logo,
#logo a {
    display: block;
    font-size: var(--title-font-size);
    line-height: var(--title-line-height);
    font-weight: normal;
    font-family: var(--title-font-family);
}
@media only screen and (min-width: 768px) {
    .logo,
    #logo a {
    }
}
#logo {;
}
#container {
}
#content {
    /*opacity: 0;*/
    padding: var(--default-spacing);
    padding-top: 120px;
}
#header {
    position: absolute;
    z-index: 100;
    left: 0;
    right: 0;
    top: 0;
    padding: var(--default-spacing);
    box-sizing: border-box;
    display: flex;
    background: #fff;
}
#menu {
    padding-left: calc(var(--default-spacing) * 2);
}
#menu a { 
    font-family: var(--title-font-family);
    font-size: var(--title-font-size);
    line-height: var(--title-line-height);
    color: #999;
}
#menu a.active,
#menu a:hover { 
    color: #000;
} 


/*#menu_button {
    position: fixed;
    z-index: 1000;
    top: var(--default-spacing);
    right: var(--default-spacing);
    display: block;
    cursor: pointer;
    width: 30px;
    height: 30px;
    background: url('../img/menu.svg') no-repeat center center;
    background-size: 100%;
}
#filters_button {
    position: fixed;
    z-index: 1000;
    top: var(--default-spacing);
    right: 60px;
    display: block;
    cursor: pointer;
    width: 30px;
    height: 30px;
    background: url('../img/search.svg') no-repeat center center;
    background-size: 90%;
}
#langs {
    position: fixed;
    z-index: 1000;
    top: calc(var(--default-spacing) + 5px);
    right: 100px;
    display: block;
    cursor: pointer;
    height: 30px;
}
#langs a { 
    font-family: var(--title-font-family);
}
#langs a.selected,
#langs a:hover { 
    color: var(--color3);
}
#menu,
#filters {
    position: fixed;
    z-index: 900;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    transform: translateY(-100%);
    transition: 0.5s;
    text-align: center;
    background: #fff;
}
#menu,
#filters {
    display: flex;
    align-items: center;
    justify-content: center;
}
body.menu_expanded #menu,
body.filters_expanded #filters {
    transform: translateY(0);
    transition: 0.5s;
}
body.menu_expanded #menu_button,
body.filters_expanded #filters_button {
    background: url('../img/close.svg') no-repeat;
    background-size: 100%;
}
#filters {
    background: var(--color3);
}
#filters a,
#menu a { 
    font-family: var(--title-font-family);
    font-size: var(--title-font-size);
    line-height: calc(var(--title-font-size) + 10px);
}
#filters a {
    font-size: var(--default-font-size);
    line-height: var(--default-line-height);
}
#filters a:hover {
    color: var(--color1);
}
#menu li.selected a,
#menu a:hover { 
    color: var(--active-color);
}*/



body.loaded #content {
    opacity: 1;
    transition: 0.5s;
}
#loading {
    display: none;
    position: fixed;
    z-index: 800;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 1;
}
body.loaded #loading {
    transform: translate(-50%,-50%);
    opacity: 0;
}
#footer {
}

a.fb {
    padding-left: 20px;
    background: url('../img/facebook.svg') no-repeat left center;
    background-size: 15px;
}
a.ig {
    padding-left: 20px;
    background: url('../img/instagram.svg') no-repeat left center;
    background-size: 15px;
}
a.yt {
    padding-left: 20px;
    background: url('../img/youtube.svg') no-repeat left center;
    background-size: 15px;
}
a.email {
    padding-left: 20px;
    background: url('../img/email.svg') no-repeat left center;
    background-size: 15px;
}
a.fb:hover,
a.ig:hover,
a.yt:hover,
a.email:hover {
    text-decoration: underline;
}

.fancybox-button--thumbs {
    display: none !important;
}




