html, body {
    padding: 0px;
    margin: 0px;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-text-size-adjust: 100%;
    font-family: "Verlag A", "Verlag B";
    font-style: normal;
    font-size: 24px;
    font-weight: 300;
    text-align: center;
    line-height: 1.38em;
    color: white;
    -webkit-overflow-scrolling: auto;
    background-color: #1F2F26;
}

img {
    display: block;
}

a img {
    border: none;
}

a:link {
    text-decoration: underline;
    border: none;
    color: inherit;
}

.content_inner a:link{
    text-decoration: none;
    cursor: default;
}

a:visited {
    text-decoration: underline;
    border: none;
    color: inherit;
}

a.hover {
    text-decoration: underline;
    border: none;
    color: inherit;
}

a:active {
    text-decoration: underline;
    border: none;
    color: inherit;
}

h1 {
    font-size: 21px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.17em;
    margin: 0px;
}

i, em {
    font-style: normal;
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
}

b, strong {
    font-family: "Verlag A", "Verlag B";
    font-weight: 400;
    font-style: normal;
}

p{
    margin: 0px;
    padding-bottom: 0.89em;
    padding-top: 0.49em;
}

.smooth_scroll{
    -webkit-overflow-scrolling: auto;
    will-change: auto;
    -webkit-backface-visibility: hidden;
}

::-moz-selection {
    /* Highlighted text style */
    color: white;
    background-color: black;
}

::selection {
    color: white;
    background-color: black;
}

:focus {
    outline: none;
}

.fill_box{
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.clear{
    clear: both;
}

.full_width{
    width: 100%;
}

.pause_scroll{
    overflow: hidden;
}

.fixed_frame{
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0px;
    left: 0px;
}

ul,
ol{
    text-align: center;
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    padding-bottom: 20px;
}

li::before {
    content: "•";
    padding-right: 10px;
    font-size: 28px;
    vertical-align: bottom;
}

.content_inner a.trigger_hover{
    cursor: pointer;
}

.content_inner a.hover{
    text-decoration: underline;
}

.content_inner a.button_block{
    text-decoration: none;
}

.background_image{
    opacity: 0;
    background-size: cover;
    background-position: center;
}

/* Site Structure */
.panel{
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.panel_content{
    padding-top: 32vw;
    padding-bottom: 22vw;
    position: relative;
}

.small_moon .panel_content{
    padding-top: 20vw;
    padding-bottom: 15vw;
}

#visible_content{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    animation: visible_content_leaving_garden 2s forwards;
}

@keyframes visible_content_leaving_garden {
    from{
        opacity: 0;
        transform: translate3d(0, -40vw, 0);
    }
    to{
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

#invisible_content{
    position: relative;
    opacity: 0;
    min-height: 100vh;
}

.content_inner{
    min-height: 100vh;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 15%;
}

#view_port_measure{
    width: 1px;
    position: absolute;
    left: -1px;
    top: 0px;
    height: 100vh;
}

#ajax_language{
    display: none;
}

#garden_click_grid{
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 0px;
    transition: padding-bottom 0s 0.3s;
}

.limit_width_thin{
    width: 100%;
    max-width: 500px;
    margin: auto;
}

.limit_width_medium{
    width: 100%;
    max-width: 800px;
    margin: auto;
}

.limit_width_wide{
    width: 100%;
    max-width: 1100px;
    margin: auto;
}

.align_right{
    float: right;
}

.align_left{
    float: left;
}

.flex_spacer{
    height: 1vw;
    max-height: 10px;
    width: 100px;
}

.button_block,
a.button_block{
    background-color: white;
    padding: 15px 30px 15px 30px;
    display: inline-block;
    position: relative;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    color: black;
    font-weight: 700;
    letter-spacing: 0.17em;
    cursor: pointer;
    margin-top: 8px;
    transition: box-shadow 0.8s;
}

.button_block.hover,
a.button_block.hover,
.contact_social_media_icon.hover{
    box-shadow: 0px 0px 55px 5px rgba(236, 236, 222, 0.5);
}

.category{
    visibility: hidden;
    opacity: 0;
    height: 0px;
    overflow: hidden;
}

.category.category_selected{
    visibility: visible;
    opacity: 1;
    height: auto;
}

/* Thumbnails */
.thumbnails_container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 24px;
    margin: auto;
}

.thumbnail_button{
    cursor: pointer;
    margin: 0px auto 30px auto;
    padding: 0px 5px 0px 5px;
    box-sizing: border-box;
    position: relative;
    min-width: 50px;
    max-width: 250px;
    width: 50%;
}

.thumbnail_small_title{
    font-size: 18px;
    font-weight: 400;
}

.thumbnail{
    width: 55%;
    padding-bottom: 55%;
    margin: 0px auto 20px auto;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

/* List */
.list_item_spacer{
    height: 70px;
}

.button_block.list_button_space{
    margin-top: 30px;
}

/* Fixed down arrow */
.fixed_down_arrow{
    position: fixed;
    left: 50%;
    height: 25px;
    bottom: 70px;
    transform: translate3d(-50%, 0, 0);
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: all 700ms;
    -webkit-backface-visibility: hidden;
}

.fixed_down_arrow.show_fixed_down_arrow{
    visibility: visible;
    opacity: 1;
}

.arrow{
    position: absolute;
    left: 50%;
    width: 66px;
    height: 25px;
    background: url("../images/down_arrow.svg") bottom center no-repeat;
    background-size: 66px;
    transform: translate3d(-50%, 0, 0);
    bottom: 0px;
    transition: bottom 300ms, top 300ms, transform 300ms;
    -webkit-transform-style: preserve-3d;
}

#back_to_top_arrow .arrow{
    bottom: auto;
    top: 0px;
}

#to_garden_text,
#back_to_top_text{
    font-size: 21px;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    font-weight: 800;
    opacity: 0;
    transform: scale(0.1);
    overflow: hidden;
    box-sizing: border-box;
    transition: opacity 300ms, transform 300ms;
    -webkit-transform-style: preserve-3d;
}

#back_to_top_text{
    padding-top: 47px;
}

#to_garden_arrow.arrow_switch{
    bottom: 20px;
    height: 80px;
}

#back_to_top_arrow.arrow_switch{
    height: 80px;
}

.arrow_switch #to_garden_text,
.arrow_switch #back_to_top_text{
    opacity: 1;
    transform: scale(1);
    transition: opacity 600ms 500ms, transform 600ms 500ms;
    -webkit-transform-style: preserve-3d;
}

#back_to_top_arrow.arrow_switch .arrow{
    transform: rotate(-180deg) translate(50%);
    -webkit-transform-style: preserve-3d;
}

.down_arrow_with_text{
    font-size: 21px;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    font-weight: 800;
    padding-bottom: 60px;
    display: inline-block;
    cursor: pointer;
    background: url("../images/down_arrow.svg") bottom center no-repeat;
    background-size: 66px;
}

#small_screen_garden_container{
    position: fixed;
    height: 80vh;
    left: 0px;
    right: 0px;
    bottom: 0px;
    -webkit-transform: translate3d(0, 55vh, 0);
    -ms-transform: translate3d(0, 55vh, 0);
    transform: translate3d(0, 55vh, 0);
    transition: transform 1.5s;
    display: none;
}

#small_screen_garden_scroll{
    position: absolute;
    left: -300px;
    right: -300px;
    height: 100%;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
}

#small_screen_garden_content{
    width: calc((80vh * 1.82) + 600px);
    height: 100%;
    text-wrap: none;
    position: relative;
}

#small_screen_garden{
    height: 100%;
    float: left;
}

#overscroll_left{
    width: 300px;
    height: 100%;
    background: url("../images/overscroll_left.png") right no-repeat;
    background-size: auto 100%;
    float: left;
}

#overscroll_right{
    width: 300px;
    height: 100%;
    background: url("../images/overscroll_right.png") left no-repeat;
    background-size: auto 100%;
    float: left;
}

/* Lightbox */
#lightbox,
#contact_lightbox,
#homepage_lightbox{
    visibility: hidden;
    opacity: 0;
    background-size: cover;
    transition: opacity 300ms 150ms, visibility 0ms 300ms;
}

#homepage_lightbox{
    background-color: black;
}

#lightbox_backdrop{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-image: url("../images/default_background.jpg");
    background-size: cover;
    background-position: center bottom;
}

.lightbox_scroll{
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding-left: 25px;
    padding-right: 25px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    display: flex;
    align-items: center;
}

.insert_lightbox_backdrop,
.insert_lightbox_content{
    display: none;
}

#lightbox_content,
#contact_lightbox_content,
#homepage_lightbox_content{
    transform: scale(0.7);
    opacity: 0;
    padding-bottom: 120px;
    padding-top: 55px;
    transition: transform 400ms, opacity 400ms;
    margin: auto;
    width: 100%;
}

.open_lightbox #lightbox,
.open_contact_lightbox #contact_lightbox,
.open_homepage_lightbox #homepage_lightbox{
    visibility: visible;
    opacity: 1;
    z-index: 8000;
    transition: opacity 400ms;
}

.open_homepage_lightbox #homepage_lightbox,
.open_homepage_lightbox #cookie_popup{
    z-index: 9998;
}

.open_homepage_lightbox #language_select,
.open_homepage_lightbox #cookie_settings_tray{
    z-index: 9999;
}

.open_lightbox #lightbox_content,
.open_contact_lightbox #contact_lightbox_content,
.open_homepage_lightbox #homepage_lightbox_content{
    opacity: 1;
    transform: scale(1);
}

.close_lightbox{
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translate(-50%);
    height: 30px;
    width: 30px;
    background: url('../images/lightbox_close.svg') center no-repeat;
    cursor: pointer;
}

#lightbox_dark_background{
    height: 100%;
    width: 100%;
    background-color: black;
    position: absolute;
    opacity: 0.3;
    display: none;
}

.lightbox_small_text{
    font-size: 0.9rem;
    line-height: 1.3em;
}

/* Backgrounds */
.backgrounds_container{
    position: absolute;
    height: 100vh;
    width: 100vw;
    padding-bottom: 40%;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    animation: backgrounds_leaving_garden 1.5s forwards;
}

@keyframes backgrounds_leaving_garden {
    0%{
        -webkit-transform: translate3d(0, -40vw, 0);
        -ms-transform: translate3d(0, -40vw, 0);
        transform: translate3d(0, -40vw, 0);
    }
    100%{
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.backgrounds_container_inner{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    padding-bottom: 40%;
}

#content_cover{
    height: 0vw;
    padding-bottom: 32%;
    overflow: hidden;
    background-color: #1F2F26;
    mask-image: url("../images/gradient.svg");
    mask-repeat: repeat-x;
    mask-position: bottom;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    /* CSS Statements that only apply on webkit-based browsers (Chrome, Safari, etc.) */
    #content_cover{
        -webkit-mask-image: -webkit-gradient(linear, left 80%, left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
    }
}

.small_moon #content_cover{
    padding-bottom: 15%;
}

.sky_background,
.garden_foreground,
.apple_tree,
.garden_video{
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.stratosphere{
    position: absolute;
    width: 100%;
    top: 100%;
    -webkit-transform: translate(0%, -187%);
    -ms-transform: translate(0%, -187%);
    transform: translate(0%, -187%);
}

.backdrop_container{
    position: absolute;
    height: 100vh;
    width: 100vw;
    padding-bottom: 40%;
    top: 0px;
    opacity: 0;
    transition: 2s opacity;
}

.backdrop_container.category_selected{
    left: 0px;
}

.backdrop_container.selected_backdrop{
    opacity: 1;
}

.backdrop{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 40vw;
    background-size: cover;
    background-position: center bottom;
}

.default_backdrop_fade{
    position: absolute;
    top: 100vh;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: url("../images/default_backdrop_fade.png");
    background-size: 100% 100%;
}

.default_backdrop{
    background-image: url("../images/default_background.jpg");
}

/* Moon */
#moon_container{
    position: fixed;
    left: 50%;
    top: 0px;
    width: 58%;
    padding-bottom: 58%;
    -webkit-transform: translate3d(-50%, -12%, 0) scale(1);
    -ms-transform: translate3d(-50%, -12%, 0) scale(1);
    transform: translate3d(-50%, -12%, 0) scale(1);
    transition: transform 2s 200ms;
    transform-origin: center 14%;
}

.small_moon #moon_container{
    -webkit-transform: translate3d(-50%, -12%, 0) scale(0.4655);
    -ms-transform: translate3d(-50%, -12%, 0) scale(0.4655);
    transform: translate3d(-50%, -12%, 0) scale(0.4655);
}

.moon{
    position: absolute;
    top: 0px; left: 0px;
    height: 100%;
    width: 100%;
    background-size: 100% 100%;
    -webkit-backface-visibility: hidden;
}

#moon_background{
    background-image: url("../images/moon_background.png");
}

#moon_logo{
    background-image: url("../images/moon_logo.svg");
}

#moon_face{
    background-image: url("../images/moon_face.png");
    opacity: 0;
    transition: opacity 0.5s;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    will-change: opacity;
}

#moon_eyes{
    background-image: url("../images/moon_eyes_square3.png");
    opacity: 0;
    transition: opacity 0s;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    will-change: opacity;
    position: absolute;
    top: 29.6%;
    left: 30%;
    right: 30%;
    bottom: 58%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

#click_moon{
    position: fixed;
    left: 50%;
    width: 24%;
    padding-bottom: 24%;
    display: block;
    top: 0px;
    -webkit-transform: translate3d(-50%, 15%, 0);
    -ms-transform: translate3d(-50%, 15%, 0);
    transform: translate3d(-50%, 15%, 0);
}

.small_moon #click_moon{
    width: 12%;
    padding-bottom: 12%;
    -webkit-transform: translate3d(-50%, 11%, 0);
    -ms-transform: translate3d(-50%, 11%, 0);
    transform: translate3d(-50%, 11%, 0);
}

/* In Garden */
.in_garden .backgrounds_container{
    animation: backgrounds_into_garden 1.5s forwards;
}

@keyframes backgrounds_into_garden {
    from{
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to{
        -webkit-transform: translate3d(0, -40vw, 0);
        -ms-transform: translate3d(0, -40vw, 0);
        transform: translate3d(0, -40vw, 0);
    }
}

.in_garden #moon_container,
.small_moon.in_garden #moon_container{
    -webkit-transform: translate3d(-50%, calc(100vh - 71vw), 0) scale(1);
    -ms-transform: translate3d(-50%, calc(100vh - 71vw), 0) scale(1);
    transform: translate3d(-50%, calc(100vh - 71vw), 0) scale(1);
}

.in_garden #visible_content{
    animation: visible_content_into_garden 1.5s forwards;
}

@keyframes visible_content_into_garden {
    from{
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    to{
        opacity: 0;
        transform: translate3d(0, -40vw, 0);
    }
}

.in_garden #invisible_content{
    z-index: -9999;
}

.in_garden #garden_click_grid{
    padding-bottom: 40%;
    transition: padding-bottom 0s 1s;
}

.in_garden #click_moon,
.small_moon.in_garden #click_moon{
    width: 24%;
    padding-bottom: 24%;
    -webkit-transform: translate3d(-50%, calc(100vh - 62vw), 0);
    -ms-transform: translate3d(-50%, calc(100vh - 62vw), 0);
    transform: translate3d(-50%, calc(100vh - 62vw), 0);
}

.in_garden #moon_face,
.in_garden #moon_eyes{
    opacity: 1;
}

.in_garden #moon_eyes{
    transition: opacity 0s 600ms;
}

.in_garden #small_screen_garden_container{
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 7777;
}

.in_garden .fixed_down_arrow.show_fixed_down_arrow{
    visibility: hidden;
    opacity: 0;
}

.in_garden .backdrop_container.product_in,
.in_garden .backdrop_container{
    opacity: 0;
}

.in_garden .mystery_zone_container{
    opacity: 1;
    transition: opacity 600ms 1.5s;
}

.in_garden .touch_left_right_icon{
    transition: opacity 600ms 1.3s;
    animation: touch_left_right_icon 4s forwards;
}

@keyframes touch_left_right_icon {
    0%{transform: translate(0%); opacity: 0;}
    20%{transform: translate(0%); opacity: 0;}
    35%{opacity: 1;}
    40%{transform: translate(0%);}
    50%{transform: translate(-20%);}
    65%{transform: translate(20%);}
    78%{transform: translate(0%); opacity: 1;}
    90%{opacity: 0;}
}

.no_anim_on_load{
    -webkit-animation: none!important;
    animation: none!important;
}